AttributeValue.FromTuple Method (Tuple<Tuple<String, Int32>, Tuple<String, Int32>, Boolean>)
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 Function FromTuple ( _
value As Tuple(Of Tuple(Of String, Integer), Tuple(Of String, Integer), Boolean) _
) As AttributeValue
'Usage
Dim value As Tuple(Of Tuple(Of String, Integer), Tuple(Of String, Integer), Boolean)
Dim returnValue As AttributeValue
returnValue = AttributeValue.FromTuple(value)
public static AttributeValue FromTuple(
Tuple<Tuple<string, int>, Tuple<string, int>, bool> value
)
public:
static AttributeValue^ FromTuple(
Tuple<Tuple<String^, int>^, Tuple<String^, int>^, bool>^ value
)
static member FromTuple :
value:Tuple<Tuple<string, int>, Tuple<string, int>, bool> -> AttributeValue
public static function FromTuple(
value : Tuple<Tuple<String, int>, Tuple<String, int>, boolean>
) : AttributeValue
Parameters
- value
Type: System.Tuple<Tuple<String, Int32>, Tuple<String, Int32>, Boolean>
The tuple object from which to create from.
Return Value
Type: System.Web.WebPages.AttributeValue
The created attribute value.