AjaxControlToolkit.Reference.Core.TypeDoc.TypeDoc C# (CSharp) Method

TypeDoc() public method

public TypeDoc ( string fullName, string baseTypeName ) : System.Collections.Generic
fullName string
baseTypeName string
return System.Collections.Generic
        public TypeDoc(string fullName, string baseTypeName)
            : base(fullName)
        {
            _baseTypeName = baseTypeName;
            _methods = new List<MethodDoc>();
            _events = new List<EventDoc>();
            _properties = new List<PropertyDoc>();
            _clientMethods = new List<MethodDoc>();
            _clientProperties = new List<ClientPropertyDoc>();
            _clientEvents = new List<ClientEventDoc>();
        }