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!

SQLParameters.Remove

Removes the SQLParameter from the collection given the value.

[Visual Basic]
Public Sub Remove( _
   ByVal value As Object _
)
[C#]
public void Remove(
   object value
);
[C++]
public: void Remove(
   Object* value
);
[JScript]
public function Remove(
   value : Object
);

Parameters

value
An Object that is the Value of the parameter.

Exceptions

Exception Type Condition
NotAnAdapterParameter The parameter is not a SQLParameter.
ObjectNotInCollectionToRemove The parameter does not exist.

See Also

SQLParameters Class | SQLParameters Members | System.Data.SQL Namespace