4 writes to prefix
System.Data.SqlXml (4)
System\Xml\Xsl\Xslt\XsltInput.cs (4)
156
rec.
prefix
= reader.Prefix;
163
rec.
prefix
= atoms.NameTable.Add(rec.prefix );
187
rec.
prefix
= string.Empty;
224
rec.
prefix
= string.Empty;
9 references to prefix
System.Data.SqlXml (9)
System\Xml\Xsl\Xslt\XsltInput.cs (9)
66
public string Prefix { get { return records[currentRecord].
prefix
;} }
163
rec.prefix = atoms.NameTable.Add(rec.
prefix
);
249
if (Ref.Equal(rec.
prefix
, atoms.Xmlns)) { // xmlns:foo="NS_FOO"
256
} else if (rec.
prefix
.Length == 0 && Ref.Equal(rec.localName, atoms.Xmlns)) { // xmlns="NS_FOO"
273
int nameLength = ((rec.
prefix
.Length != 0) ? rec.
prefix
.Length + 1 : 0) + rec.localName.Length;
499
this.prefix = rec.
prefix
;
1032
public string QualifiedName { get { return
prefix
.Length == 0 ? localName : string.Concat(
prefix
, ":", localName); } }