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!

DataRow.SetNull

Sets the specified column's value to a null value.

[Visual Basic]
Protected Sub SetNull( _
   ByVal column As DataColumn _
)
[C#]
protected void SetNull(
   DataColumn column
);
[C++]
protected: void SetNull(
   DataColumn* column
);
[JScript]
protected function SetNull(
   column : DataColumn
);

Parameters

column
A DataColumn.

Remarks

Use the IsNull method to determine if a column contains a null value.

See Also

DataRow Class | DataRow Members | System.Data Namespace