Base64UrlTextEncoder.Decode Method

Decodes the specified text.

Namespace:  Microsoft.Owin.Security.DataHandler.Encoder
Assembly:  Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)

Syntax

'Declaration
Public Function Decode ( _
    text As String _
) As Byte()
'Usage
Dim instance As Base64UrlTextEncoder 
Dim text As String 
Dim returnValue As Byte()

returnValue = instance.Decode(text)
public byte[] Decode(
    string text
)
public:
virtual array<unsigned char>^ Decode(
    String^ text
) sealed
abstract Decode : 
        text:string -> byte[] 
override Decode : 
        text:string -> byte[] 
public final function Decode(
    text : String
) : byte[]

Parameters

Return Value

Type: System.Byte[]
A Byte that represents the decoded data.

Implements

ITextEncoder.Decode(String)

See Also

Reference

Base64UrlTextEncoder Class

Microsoft.Owin.Security.DataHandler.Encoder Namespace