NStub.CSharp.ObjectGeneration.BuildDataDictionary.this C# (CSharp) Method

this() public method

Gets the IBuilderData lookup of the specified category.
public this ( string category ) : IBuilderData>.IDictionary
category string The category of the requested data items.
return IBuilderData>.IDictionary
        public IDictionary<string, IBuilderData> this[string category]
        {
            get
            {
                IDictionary<string, IBuilderData> catLookup;
                this.TryGetCategory(category, out catLookup);
                return catLookup;
            }

            /*set
                                    {
                                        this.data[category] = value;
                                    }*/
        }