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!

ADOCommand.NamedParameters

Gets or sets whether named parameters are being used.

[Visual Basic]
Public Property NamedParameters As Boolean
[C#]
public bool NamedParameters {get; set;}
[C++]
public: __property bool get_NamedParameters();
public: __property void set_NamedParameters(bool);
[JScript]
public function get NamedParameters() : Boolean;
public function set NamedParameters(Boolean);

Property Value

true if named parameters are being used, otherwise false. The default value is false.

Remarks

If the value is false, then the Parameters are to be accessed by ordinal value, which is their position in the collection.

See Also

ADOCommand Class | ADOCommand Members | System.Data.ADO Namespace | ActiveConnection | CommandTimeout | CommandType | CommandText | RowFetchCount | CommandBehavior