ReportExpression<T>.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 the value of a ReportExpression<T> to another type.
Overloads
Explicit(ReportExpression<T> to T) |
Converts the value of a ReportExpression<T> to an object of type |
Explicit(ReportExpression<T> to String) |
Converts the value of a ReportExpression<T> to a string. |
Explicit(ReportExpression<T> to T)
Converts the value of a ReportExpression<T> to an object of type T
.
public:
static explicit operator T(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> value);
public static explicit operator T (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> value);
static member op_Explicit : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> 'T
Public Shared Narrowing Operator CType (value As ReportExpression(Of T)) As T
Parameters
- value
- ReportExpression<T>
A ReportExpression<T> object.
Returns
An object of type T
.
Remarks
The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False
Applies to
Explicit(ReportExpression<T> to String)
Converts the value of a ReportExpression<T> to a string.
public:
static explicit operator System::String ^(Microsoft::ReportingServices::RdlObjectModel::ReportExpression<T> value);
public static explicit operator string (Microsoft.ReportingServices.RdlObjectModel.ReportExpression<T> value);
static member op_Explicit : Microsoft.ReportingServices.RdlObjectModel.ReportExpression<'T (requires 'T : struct)> -> string
Public Shared Narrowing Operator CType (value As ReportExpression(Of T)) As String
Parameters
- value
- ReportExpression<T>
A ReportExpression<T> object.
Returns
A string
value of the ReportExpression<T> object.
Remarks
The equivalent method for this operator is ?qualifyHint=True&autoUpgrade=False