Class Base64UrlCoder
Inheritance
System.Object
Base64UrlCoder
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: DocuWare.WebIntegration
Assembly: DocuWare.WebIntegration.dll
Syntax
public class Base64UrlCoder
Constructors
Base64UrlCoder()
Declaration
public Base64UrlCoder()
Methods
Decode(String)
Declaration
public static byte[] Decode(string encodedValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodedValue |
Returns
Type | Description |
---|---|
System.Byte[] |
DecodeToString(String)
Calls Decode(str) and converts the resulting byte[] to a string.
Declaration
public static string DecodeToString(string encodedValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodedValue |
Returns
Type | Description |
---|---|
System.String |
Encode(Byte[])
Declaration
public static string Encode(byte[] data)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | data |
Returns
Type | Description |
---|---|
System.String |
EncodeString(String)
Converts the passed string to a byte[] b and calls Encode(b).
Declaration
public static string EncodeString(string value)
Parameters
Type | Name | Description |
---|---|---|
System.String | value |
Returns
Type | Description |
---|---|
System.String |