You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -21,13 +21,10 @@ public SvgNodeReader(XmlNode node, Dictionary<string, string> entities)
21
21
/// Gets the text value of the current node.
22
22
/// </summary>
23
23
/// <value></value>
24
-
/// <returns>The value returned depends on the <see cref="P:System.Xml.XmlTextReader.NodeType"/> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space within an xml:space= 'preserve' scope. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. </returns>
24
+
/// <returns>The value returned depends on the <see cref="P:System.Xml.XmlNodeReader.NodeType"/> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space within an xml:space= 'preserve' scope. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. </returns>
25
25
publicoverridestringValue
26
26
{
27
-
get
28
-
{
29
-
return_customValue?_value:base.Value;
30
-
}
27
+
get{return_customValue?_value:base.Value;}
31
28
}
32
29
33
30
/// <summary>
@@ -37,10 +34,7 @@ public override string Value
37
34
/// <returns>The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty.</returns>
@@ -38,10 +35,7 @@ public SvgTextReader(TextReader reader, Dictionary<string, string> entities)
38
35
/// <returns>The value returned depends on the <see cref="P:System.Xml.XmlTextReader.NodeType"/> of the node. The following table lists node types that have a value to return. All other node types return String.Empty.Node Type Value AttributeThe value of the attribute. CDATAThe content of the CDATA section. CommentThe content of the comment. DocumentTypeThe internal subset. ProcessingInstructionThe entire content, excluding the target. SignificantWhitespaceThe white space within an xml:space= 'preserve' scope. TextThe content of the text node. WhitespaceThe white space between markup. XmlDeclarationThe content of the declaration. </returns>
39
36
publicoverridestringValue
40
37
{
41
-
get
42
-
{
43
-
return(this._customValue)?this._value:base.Value;
44
-
}
38
+
get{return_customValue?_value:base.Value;}
45
39
}
46
40
47
41
/// <summary>
@@ -51,23 +45,7 @@ public override string Value
51
45
/// <returns>The name of the current node with the prefix removed. For example, LocalName is book for the element <bk:book>.For node types that do not have a name (like Text, Comment, and so on), this property returns String.Empty.</returns>
0 commit comments