SDKDocGenerator.AbstractTypeProvider.GetTypes C# (CSharp) 메소드

GetTypes() 공개 메소드

public GetTypes ( ) : IEnumerable
리턴 IEnumerable
        virtual public IEnumerable<TypeWrapper> GetTypes() { return null; }
        virtual public IEnumerable<string> GetNamespaces() { return null; }

Usage Example

예제 #1
0
        public override IEnumerable <TypeWrapper> GetTypes()
        {
            var types = new HashSet <TypeWrapper>(this._allTypes);

            if (_deferredTypesProvider != null)
            {
                types.UnionWith(_deferredTypesProvider.GetTypes());
            }
            return(types);
        }