Exemple #1
0
 internal XmlSchemaInfo(IXmlSchemaInfo info)
 {
     isDefault  = info.IsDefault;
     isNil      = info.IsNil;
     memberType = info.MemberType;
     attr       = info.SchemaAttribute;
     elem       = info.SchemaElement;
     type       = info.SchemaType;
     validity   = info.Validity;
 }
Exemple #2
0
		internal XmlSchemaInfo (IXmlSchemaInfo info)
		{
			isDefault = info.IsDefault;
			isNil = info.IsNil;
			memberType = info.MemberType;
			attr = info.SchemaAttribute;
			elem = info.SchemaElement;
			type = info.SchemaType;
			validity = info.Validity;
		}
Exemple #3
0
 internal XmlSchemaInfo(IXmlSchemaInfo info)
 {
     this.isDefault  = info.IsDefault;
     this.isNil      = info.IsNil;
     this.memberType = info.MemberType;
     this.attr       = info.SchemaAttribute;
     this.elem       = info.SchemaElement;
     this.type       = info.SchemaType;
     this.validity   = info.Validity;
 }
Exemple #4
0
 internal void Clear()
 {
     _isNil           = false;
     _isDefault       = false;
     _schemaType      = null;
     _schemaElement   = null;
     _schemaAttribute = null;
     _memberType      = null;
     _validity        = XmlSchemaValidity.NotKnown;
     _contentType     = XmlSchemaContentType.Empty;
 }
 internal void Clear()
 {
     this.isNil = false;
     this.isDefault = false;
     this.schemaType = null;
     this.schemaElement = null;
     this.schemaAttribute = null;
     this.memberType = null;
     this.validity = XmlSchemaValidity.NotKnown;
     this.contentType = XmlSchemaContentType.Empty;
 }
 internal void Clear()
 {
     this.isNil           = false;
     this.isDefault       = false;
     this.schemaType      = null;
     this.schemaElement   = null;
     this.schemaAttribute = null;
     this.memberType      = null;
     this.validity        = XmlSchemaValidity.NotKnown;
     this.contentType     = XmlSchemaContentType.Empty;
 }
Exemple #7
0
 public void SetValidity(XmlSchemaValidity value)
 {
     _flags = (byte)((_flags & ~ValidityMask) | (byte)(value));
 }
 internal XmlSchemaInfo(XmlSchemaValidity validity) : this() {
     this.validity = validity;
 }
 internal void Clear() {
     isNil = false;
     isDefault = false;
     schemaType = null;
     schemaElement = null;
     schemaAttribute = null;
     memberType = null;
     validity = XmlSchemaValidity.NotKnown;
     contentType = XmlSchemaContentType.Empty;
 }
Exemple #10
0
 internal XmlSchemaInfo(XmlSchemaValidity validity) : this()
 {
     _validity = validity;
 }
 public void SetValidity(XmlSchemaValidity value) {
     flags = (byte)((flags & ~ValidityMask) | (byte)(value));
 }
 public void SetValidity(XmlSchemaValidity value)
 {
     this.flags = (byte)((this.flags & -4) | ((byte)value));
 }
 public void SetValidity(XmlSchemaValidity value)
 {
     this.flags = (byte) ((this.flags & -4) | ((byte) value));
 }