System.Xml.Schema.XmlSchemaAttributeGroup.SetQualifiedName C# (CSharp) Méthode

SetQualifiedName() private méthode

private SetQualifiedName ( XmlQualifiedName value ) : void
value XmlQualifiedName
Résultat void
        internal void SetQualifiedName(XmlQualifiedName value) { 
            qname = value;
        }

Usage Example

 private void PreprocessAttributeGroup(XmlSchemaAttributeGroup attributeGroup)
 {
     if (attributeGroup.Name != null)
     {
         this.ValidateNameAttribute(attributeGroup);
         attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, this.targetNamespace));
     }
     else
     {
         base.SendValidationEvent("Sch_MissRequiredAttribute", "name", attributeGroup);
     }
     this.PreprocessAttributes(attributeGroup.Attributes, attributeGroup.AnyAttribute, attributeGroup);
     this.PreprocessAnnotation(attributeGroup);
     this.ValidateIdAttribute(attributeGroup);
 }
All Usage Examples Of System.Xml.Schema.XmlSchemaAttributeGroup::SetQualifiedName
XmlSchemaAttributeGroup