예제 #1
0
 /// <summary>
 /// Get the unencoded XML declaration.
 /// </summary>
 /// <returns>XML declaration</returns>
 public string GetWholeDeclaration()
 {
     return(Attributes.GetValue(DECL_KEY));
 }
예제 #2
0
 /// <summary>
 /// Get the data contents of this node. Will be unescaped and with original new lines, space etc.
 /// </summary>
 /// <returns>data</returns>
 public string GetWholeData()
 {
     return(Attributes.GetValue(DATA_KEY));
 }
예제 #3
0
파일: Comment.cs 프로젝트: milenstack/NSoup
 /// <summary>
 /// Get the contents of the comment.
 /// </summary>
 /// <returns>Content</returns>
 public string GetData()
 {
     return Attributes.GetValue(COMMENT_KEY);
 }