9 references to Notation
System.Xml (9)
System\Xml\Schema\DataTypeImplementation.cs (1)
2782
public override XmlTypeCode TypeCode { get { return XmlTypeCode.
Notation
; }}
System\Xml\Schema\XmlAtomicValue.cs (2)
116
if (nsResolver != null && (this.xmlType.TypeCode == XmlTypeCode.QName || this.xmlType.TypeCode == XmlTypeCode.
Notation
) ) {
135
if (nsResolver != null && (this.xmlType.TypeCode == XmlTypeCode.QName || this.xmlType.TypeCode == XmlTypeCode.
Notation
) ) { //Its a qualifiedName
System\Xml\Schema\XmlSchemaDataType.cs (1)
201
case XmlTypeCode.
Notation
:
System\Xml\Schema\XmlValueConverter.cs (5)
1893
case XmlTypeCode.
Notation
: return QNameToString((XmlQualifiedName) value, nsResolver);
1919
case XmlTypeCode.
Notation
: return StringToQName((string) value, nsResolver);
1961
case XmlTypeCode.
Notation
: return StringToQName((string) value, nsResolver);
1967
case XmlTypeCode.
Notation
: return ((XmlQualifiedName) value);
2012
case XmlTypeCode.
Notation
: return (new XmlAtomicValue(SchemaType, value, nsResolver));