Base64UrlTextEncoder.Encode Method (Byte[])
Converts a data to a string that is in the Base64Url format.
Namespace: Microsoft.Owin.Security.DataHandler.Encoder
Assembly: Microsoft.Owin.Security (in Microsoft.Owin.Security.dll)
Syntax
public string Encode(
byte[] data
)
public:
virtual String^ Encode(
array<unsigned char>^ data
) sealed
abstract Encode :
data:byte[] -> string
override Encode :
data:byte[] -> string
Public Function Encode (
data As Byte()
) As String
Parameters
data
Type: System.Byte[]The data to convert.
Return Value
Type: System.String
A string of data converted to the Base64Url format.
Implements
See Also
Base64UrlTextEncoder Class
Microsoft.Owin.Security.DataHandler.Encoder Namespace
Return to top