NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

XmlCharacterData.Substring

Retrieves a substring of the full string from the specified range.

[Visual Basic]
Overridable Public Function Substring( _
   ByVal offset As Integer, _
   ByVal count As Integer _
) As String
[C#]
public virtual string Substring(
   int offset,
   int count
);
[C++]
public: virtual String* Substring(
   int offset,
   int count
);
[JScript]
public function Substring(
   offset : int,
   count : int
) : String;

Parameters

offset
Offset, in characters, from the beginning of the string. An offset of zero indicates copying from the start of the data.
count
[To be supplied.]

See Also

XmlCharacterData Class | XmlCharacterData Members | System.NewXml Namespace