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!

SQLParameter.Value

Gets or sets the value of the parameter.

[Visual Basic]
Overridable Public Property Value As Object
[C#]
public object Value {virtual get; virtual set;}
[C++]
public: __property virtual Object* get_Value();
public: __property virtual void set_Value(Object*);
[JScript]
public function get Value() : Object;
public function set Value(Object);

Property Value

An Object that is the value of the parameter.

Remarks

This property is overwritten by Update. If IsInput is true and this SQLParameter has a DataSetColumn, the Value is queried by the Update method. if IsOuput is true and this SQLParameter has a DataSetColumn, use Convert.DBNull to pass a SQL NULL or use null to pass a SQL DEFAULT.

See Also

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