Exemplo n.º 1
0
		public MethodDocData(string name, string id, Visibility access, String returnType, ParameterDocData[] parameters)
		{
			this.name = name;
			this.id = id;
			this.access = access;
			this.returnType = returnType;
			this.parameters = parameters;
		}
Exemplo n.º 2
0
		public PropertyDocData(string name, string id, string type, Visibility access, ParameterDocData[] parameters)
		{
			this.name = name;
			this.id = id;
			this.type = type;
			this.access = access;
			this.parameters = parameters;
		}
Exemplo n.º 3
0
		public EventDocData(string name, string delegateName, string id, Visibility access, String returnType, ParameterDocData[] parameters)
		{
			this.name = name;
			this.delegateName = delegateName;
			this.id = id;
			this.access = access;
			this.returnType = returnType;
			this.parameters = parameters;
		}