SqlCeParameter.Direction Property
This property always returns ParameterDirection.Input for .NET Compact Framework Data Provider for SQL Server Compact Edition. Setting this property to a different value causes an InvalidOperationException to be thrown.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in system.data.sqlserverce.dll)
Syntax
'Declaration
Public Overrides Property Direction As ParameterDirection
'Usage
Dim instance As SqlCeParameter
Dim value As ParameterDirection
value = instance.Direction
instance.Direction = value
public override ParameterDirection Direction { get; set; }
public:
virtual property ParameterDirection Direction {
ParameterDirection get () override;
void set (ParameterDirection value) override;
}
/** @property */
public ParameterDirection get_Direction ()
/** @property */
public void set_Direction (ParameterDirection value)
public override function get Direction () : ParameterDirection
public override function set Direction (value : ParameterDirection)
Not applicable.
Property Value
This property always returns ParameterDirection.Input for SQL Server Compact Edition Data Provider. Setting this property is not supported.
Exceptions
Exception type | Condition |
---|---|
InvalidOperationException |
The user attempted to set this property. |
Platforms
Windows CE, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows XP Professional x64 Edition, Windows XP SP2
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.
Version Information
.NET Framework
Supported in: 3.0
.NET Compact Framework
Supported in: 2.0, 1.0
See Also
Reference
SqlCeParameter Class
SqlCeParameter Members
System.Data.SqlServerCe Namespace