System.Xml.XmlDictionaryReader.GetNonAtomizedNames C# (CSharp) Méthode

GetNonAtomizedNames() public méthode

public GetNonAtomizedNames ( string &localName, string &namespaceUri ) : void
localName string
namespaceUri string
Résultat void
        public virtual void GetNonAtomizedNames(out string localName, out string namespaceUri)
        {
            localName = LocalName;
            namespaceUri = NamespaceURI;
        }

Usage Example

 public HeaderInfo(XmlDictionaryReader reader, string actor, bool mustUnderstand, bool relay, bool isReferenceParameter)
 {
     this.actor = actor;
     this.mustUnderstand = mustUnderstand;
     this.relay = relay;
     this.isReferenceParameter = isReferenceParameter;
     reader.GetNonAtomizedNames(out this.name, out this.ns);
 }