AttributeValue Implicit Conversion (Tuple<Tuple<String, Int32>, Tuple<Object, Int32>, Boolean> to AttributeValue)
Creates an attribute value from the specified tuple object.
Namespace: System.Web.WebPages
Assembly: System.Web.WebPages (in System.Web.WebPages.dll)
Syntax
'Declaration
Public Shared Widening Operator CType ( _
value As Tuple(Of Tuple(Of String, Integer), Tuple(Of Object, Integer), Boolean) _
) As AttributeValue
'Usage
Dim input As Tuple(Of Tuple(Of String, Integer), Tuple(Of Object, Integer), Boolean)
Dim output As AttributeValue
output = CType(input, AttributeValue)
public static implicit operator AttributeValue (
Tuple<Tuple<string, int>, Tuple<Object, int>, bool> value
)
static implicit operator AttributeValue^ (
Tuple<Tuple<String^, int>^, Tuple<Object^, int>^, bool>^ value
)
JScript supports the use of custom casts, but not the declaration of new ones.
Parameters
- value
Type: System.Tuple<Tuple<String, Int32>, Tuple<Object, Int32>, Boolean>
The tuple object from which to create from.
Return Value
Type: System.Web.WebPages.AttributeValue
The created attribute value.