3 implementations of Direction
System.Data.Common (1)
System\Data\Common\DbParameter.cs (1)
23public abstract ParameterDirection Direction { get; set; }
System.Data.Odbc (1)
System\Data\Odbc\OdbcParameterHelper.cs (1)
50public override ParameterDirection Direction
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
355public override System.Data.ParameterDirection Direction { get { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } set { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); } }
2 references to Direction
System.Data.Common (2)
System\Data\Common\DbDataAdapter.cs (2)
756if ((null != parameter) && (0 != (ParameterDirection.Input & parameter.Direction))) 785if (0 != (ParameterDirection.Output & parameter.Direction))