Base64TextEncoder.Decode Method (String)
Decodes the specified text.
Namespace: Microsoft.Owin.Security.DataHandler.Encoder
Assembly: Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)
Syntax
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 Function Decode (
text As String
) As Byte()
Parameters
text
Type: System.StringThe text to decode.
Return Value
Type: System.Byte[]
A Byte that represents the decoded data.
Implements
See Also
Base64TextEncoder Class
Microsoft.Owin.Security.DataHandler.Encoder Namespace
Return to top