AspNetEdit.Editor.ComponentModel.DesignContainer.DesignSite.GetService C# (CSharp) Method

GetService() public method

public GetService ( Type serviceType ) : object
serviceType System.Type
return object
            public object GetService(Type serviceType)
            {
                if (serviceType == typeof (IDictionaryService)) {
                    if (dict == null)
                        dict = new Hashtable ();
                    return this;
                }
                return container.GetService (serviceType);
            }