IDataParameter::ParameterName Property

 

Gets or sets the name of the IDataParameter.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

property String^ ParameterName {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

The name of the IDataParameter. The default is an empty string.

The ParameterName is specified in the form @paramname. You must set ParameterName before executing a command that relies on parameters.

The following example creates an instance of the implementing class, SqlParameter, and sets some of its properties.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: