Beispiel #1
0
 public NamespaceInfo(InfoBinderInterface binder, string namespaceURI, string prefix, int typeBegin, int typeEnd)
 {
     this.namespaceURI = namespaceURI;
     this.prefix       = prefix;
     this.binder       = binder;
     this.typeBegin    = typeBegin;
     this.typeEnd      = typeEnd;
 }
Beispiel #2
0
 public MemberInfo(InfoBinderInterface binder, string namespaceURI, string localName, int containingTypeIndex, int dataTypeIndex, MemberFlags flags)
 {
     this.namespaceURI        = namespaceURI;
     this.localName           = localName;
     this.binder              = binder;
     this.containingTypeIndex = containingTypeIndex;
     this.dataTypeIndex       = dataTypeIndex;
     this.flags = flags;
 }
Beispiel #3
0
 public TypeInfo(InfoBinderInterface binder, int namespaceIndex, string localName, int baseTypeIndex, int memberBegin,
                 int memberEnd, FacetInfo[] facets, WhitespaceType whitespace)
 {
     this.namespaceIndex = namespaceIndex;
     this.localName      = localName;
     this.baseTypeIndex  = baseTypeIndex;
     this.memberBegin    = memberBegin;
     this.memberEnd      = memberEnd;
     this.facets         = facets;
     this.whitespace     = whitespace;
     this.binder         = binder;
     this.formatter      = null;
 }
Beispiel #4
0
		public TypeInfo(InfoBinderInterface binder, int namespaceIndex, string localName, int baseTypeIndex, int memberBegin,
					 int memberEnd, FacetInfo[] facets, WhitespaceType whitespace)
		{
			this.namespaceIndex = namespaceIndex;
			this.localName = localName;
			this.baseTypeIndex = baseTypeIndex;
			this.memberBegin = memberBegin;
			this.memberEnd = memberEnd;
			this.facets = facets;
			this.whitespace = whitespace;
			this.binder = binder;
			this.formatter = null;
		}
Beispiel #5
0
 public NamespaceInfo(InfoBinderInterface binder, string namespaceURI, string prefix, int typeBegin, int typeEnd)
 {
     this.namespaceURI = namespaceURI;
     this.prefix = prefix;
     this.binder = binder;
     this.typeBegin = typeBegin;
     this.typeEnd = typeEnd;
 }
Beispiel #6
0
 public MemberInfo(InfoBinderInterface binder, string namespaceURI, string localName, int containingTypeIndex, int dataTypeIndex, MemberFlags flags, int minOccurs, int maxOccurs)
 {
     this.namespaceURI = namespaceURI;
     this.localName = localName;
     this.binder = binder;
     this.containingTypeIndex = containingTypeIndex;
     this.dataTypeIndex =dataTypeIndex;
     this.flags = flags;
     this.minOccurs = minOccurs;
     this.maxOccurs = maxOccurs;
 }