SqlBinary.Explicit Operator
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Converts to a SqlBinary structure.
Overloads
Explicit(SqlBinary to Byte[]) | |
Explicit(SqlGuid to SqlBinary) |
Explicit(SqlBinary to Byte[])
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
public:
static explicit operator cli::array <System::Byte> ^(System::Data::SqlTypes::SqlBinary x);
public static explicit operator byte[]? (System.Data.SqlTypes.SqlBinary x);
public static explicit operator byte[] (System.Data.SqlTypes.SqlBinary x);
static member op_Explicit : System.Data.SqlTypes.SqlBinary -> byte[]
Public Shared Narrowing Operator CType (x As SqlBinary) As Byte()
Parameters
Returns
Byte[]
A Byte array.
Remarks
The equivalent method for this operator is SqlBinary.Value
See also
Applies to
Explicit(SqlGuid to SqlBinary)
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
- Source:
- SQLBinary.cs
public:
static explicit operator System::Data::SqlTypes::SqlBinary(System::Data::SqlTypes::SqlGuid x);
public static explicit operator System.Data.SqlTypes.SqlBinary (System.Data.SqlTypes.SqlGuid x);
static member op_Explicit : System.Data.SqlTypes.SqlGuid -> System.Data.SqlTypes.SqlBinary
Public Shared Narrowing Operator CType (x As SqlGuid) As SqlBinary
Parameters
Returns
The SqlGuid structure to be converted.
Remarks
The equivalent method for this operator is SqlBinary.ToSqlGuid()
See also
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.