39 references to Prefix
System.Runtime.Serialization (39)
System\Runtime\Serialization\Json\XmlJsonReader.cs (6)
1142
elementNode.
Prefix
.SetValue(PrefixHandleType.Empty);
1206
attribute.
Prefix
.SetValue(PrefixHandleType.Empty);
1373
elementNode.
Prefix
.SetValue(PrefixHandleType.Empty);
1517
attribute.
Prefix
.SetValue(PrefixHandleType.Empty);
1589
attribute.
Prefix
.SetValue(PrefixHandleType.Empty);
1593
elementNode.
Prefix
.SetValue(PrefixHandleType.A);
System\Xml\XmlBaseReader.cs (14)
187
if (!node.
Prefix
.IsEmpty)
202
if (!node.
Prefix
.IsEmpty)
402
if (attributeNode.
Prefix
== xml)
742
PrefixHandle prefix = attributeNode.
Prefix
;
771
XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNode1.
Prefix
.GetString(), attributeNode2.
Prefix
.GetString(), attributeNode1.LocalName.GetString(), attributeNode1.Namespace.Uri.GetString());
807
XmlExceptionHelper.ThrowDuplicateAttribute(this, attributeNodes[attribute1].
Prefix
.GetString(), attributeNodes[attribute2].
Prefix
.GetString(), attributeNodes[attribute1].LocalName.GetString(), attributeNodes[attribute1].Namespace.Uri.GetString());
958
prefix = node.
Prefix
.GetString(NameTable);
1123
return (node.NodeType == XmlNodeType.Element || IsStartElement()) && node.
Prefix
== prefix && node.LocalName == localName;
2034
byte[] prefixBuffer = node.
Prefix
.GetString(out prefixOffset, out prefixLength);
2046
byte[] prefixBuffer = attributeNode.
Prefix
.GetString(out prefixOffset, out prefixLength);
2067
byte[] prefixBuffer = node.
Prefix
.GetString(out prefixOffset, out prefixLength);
2406
return this.
Prefix
== prefix && this.LocalName == localName;
System\Xml\XmlBinaryReader.cs (14)
441
elementNode.
Prefix
.SetValue(PrefixHandleType.Empty);
449
ReadName(elementNode.
Prefix
);
452
elementNode.Namespace = LookupNamespace(elementNode.
Prefix
);
457
elementNode.
Prefix
.SetValue(PrefixHandleType.Empty);
465
ReadName(elementNode.
Prefix
);
468
elementNode.Namespace = LookupNamespace(elementNode.
Prefix
);
499
elementNode.
Prefix
.SetValue(prefix);
533
elementNode.
Prefix
.SetValue(prefix);
747
attributeNode.
Prefix
.SetValue(PrefixHandleType.Empty);
754
ReadName(attributeNode.
Prefix
);
762
attributeNode.
Prefix
.SetValue(PrefixHandleType.Empty);
769
ReadName(attributeNode.
Prefix
);
830
attributeNode.
Prefix
.SetValue(prefix);
863
attributeNode.
Prefix
.SetValue(prefix);
System\Xml\XmlUTF8TextReader.cs (5)
598
attributeNode.
Prefix
.SetValue(prefix);
606
attributeNode.
Prefix
.SetValue(prefix);
708
ReadQualifiedName(elementNode.
Prefix
, elementNode.LocalName);
721
elementNode.Namespace = LookupNamespace(elementNode.
Prefix
);
749
XmlExceptionHelper.ThrowTagMismatch(this, elementNode.
Prefix
.GetString(), elementNode.LocalName.GetString(), prefix.GetString(), localName.GetString());