4 writes to prefix
System.Private.Xml (4)
System\Xml\Xsl\Xslt\XsltInput.cs (4)
170
rec.
prefix
= _reader.Prefix;
178
rec.
prefix
= _atoms.NameTable.Add(rec.prefix);
207
rec.
prefix
= string.Empty;
249
rec.
prefix
= string.Empty;
9 references to prefix
System.Private.Xml (9)
System\Xml\Xsl\Xslt\XsltInput.cs (9)
62
public string Prefix { get { return _records[_currentRecord].
prefix
; } }
178
rec.prefix = _atoms.NameTable.Add(rec.
prefix
);
275
if (Ref.Equal(rec.
prefix
, _atoms.Xmlns))
285
else if (rec.
prefix
.Length == 0 && Ref.Equal(rec.localName, _atoms.Xmlns))
307
int nameLength = ((rec.
prefix
.Length != 0) ? rec.
prefix
.Length + 1 : 0) + rec.localName.Length;
576
_prefix = rec.
prefix
;
1215
public string QualifiedName { get { return
prefix
.Length == 0 ? localName : $"{
prefix
}:{localName}"; } }