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.ReplaceData

Replace the specified number of characters starting at the specified offset with the specified string.

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

Parameters

offset
Offset, in characters, at which to start replacing string data.
count
[To be supplied.]
strData
New data that replaces the old string data.

See Also

XmlCharacterData Class | XmlCharacterData Members | System.NewXml Namespace