1 type derived from XmlText
System.Configuration (1)
System\Configuration\ConfigXmlText.cs (1)
14
internal sealed class ConfigXmlText :
XmlText
, IConfigErrorInfo {
4 instantiations of XmlText
System.Xml (4)
System\Xml\Dom\XmlDocument.cs (1)
610
return new
XmlText
( text, this );
System\Xml\Dom\XmlLoader.cs (3)
289
node = direct ? new
XmlText
( r.Value, doc ) : doc.CreateTextNode( r.Value );
301
node.AppendChildForLoad( direct ? new
XmlText
( string.Empty ) : doc.CreateTextNode( string.Empty ), doc );
466
node = new
XmlText
( reader.Value, this.doc );
21 references to XmlText
System.Configuration (1)
System\Configuration\ErrorInfoXmlDocument.cs (1)
95
public override
XmlText
CreateTextNode(String text) {
System.Data (1)
fx\src\data\System\Data\DataSet.cs (1)
2067
((root.ChildNodes.Count == 1) && root.FirstChild.GetType() == typeof(System.Xml.
XmlText
))) {
System.IdentityModel (2)
System\IdentityModel\Tokens\WSTrust.cs (2)
172
if (element.FirstChild is
XmlText
)
174
value = ((
XmlText
)element.FirstChild).Value;
System.ServiceModel (2)
System\ServiceModel\Security\WSTrust.cs (2)
1656
if (element.FirstChild is
XmlText
)
1658
value = ((
XmlText
)element.FirstChild).Value;
System.Web.Extensions (7)
Compilation\WCFModel\SchemaMerger.cs (7)
369
if (originalValue is
XmlText
)
371
return CompareXmlTexts((
XmlText
)originalValue, (
XmlText
)newValue);
517
private static bool CompareXmlTexts(
XmlText
text1,
XmlText
text2)
675
if (value is
XmlText
)
677
return ((
XmlText
)value).Name;
System.Xml (7)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
345
XmlText
textNode = document.CreateTextNode(schemaInfo.SchemaElement.ElementDecl.DefaultValueRaw);
System\Xml\Dom\XmlDocument.cs (1)
609
public virtual
XmlText
CreateTextNode( String text ) {
System\Xml\Dom\XmlText.cs (2)
89
public virtual
XmlText
SplitText(int offset) {
101
XmlText
newTextNode = OwnerDocument.CreateTextNode(splitData);
System\Xml\Serialization\Types.cs (1)
780
if (typeof(
XmlText
).IsAssignableFrom(type))
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1423
if (e.LastNode is
XmlText
) {
1424
xmlnsMemberName = (((
XmlText
)e.LastNode).Value).Trim(null);
WindowsBase (1)
Base\MS\Internal\IO\Packaging\XmlSignatureManifest.cs (1)
810
XmlText
digestValueText = xDoc.CreateTextNode(XmlDigitalSignatureProcessor.GenerateDigestValue(s, transformName, hashAlgorithm));