SqlGuid.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 and from a SqlGuid instance.
Overloads
Explicit(SqlBinary to SqlGuid) | |
Explicit(SqlGuid to Guid) | |
Explicit(SqlString to SqlGuid) |
Explicit(SqlBinary to SqlGuid)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
public:
static explicit operator System::Data::SqlTypes::SqlGuid(System::Data::SqlTypes::SqlBinary x);
public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlBinary x);
static member op_Explicit : System.Data.SqlTypes.SqlBinary -> System.Data.SqlTypes.SqlGuid
Public Shared Narrowing Operator CType (x As SqlBinary) As SqlGuid
Parameters
A SqlBinary
object.
Returns
A new SqlGuid whose Value is equal to the Value of the SqlBinary parameter.
See also
Applies to
Explicit(SqlGuid to Guid)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
public:
static explicit operator Guid(System::Data::SqlTypes::SqlGuid x);
public static explicit operator Guid (System.Data.SqlTypes.SqlGuid x);
static member op_Explicit : System.Data.SqlTypes.SqlGuid -> Guid
Public Shared Narrowing Operator CType (x As SqlGuid) As Guid
Parameters
Returns
A new Guid equal to the Value of the SqlGuid.
See also
Applies to
Explicit(SqlString to SqlGuid)
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
- Source:
- SQLGuid.cs
public:
static explicit operator System::Data::SqlTypes::SqlGuid(System::Data::SqlTypes::SqlString x);
public static explicit operator System.Data.SqlTypes.SqlGuid (System.Data.SqlTypes.SqlString x);
static member op_Explicit : System.Data.SqlTypes.SqlString -> System.Data.SqlTypes.SqlGuid
Public Shared Narrowing Operator CType (x As SqlString) As SqlGuid
Parameters
Returns
A SqlGuid whose Value equals the value represented by the SqlString parameter.
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.