System.Net.WebUtility.UrlDecodeToBytes C# (CSharp) Method

UrlDecodeToBytes() public static method

public static UrlDecodeToBytes ( byte encodedValue, int offset, int count ) : byte[]
encodedValue byte
offset int
count int
return byte[]
        public static byte[] UrlDecodeToBytes(byte[] encodedValue, int offset, int count)
        {
            return UrlDecodeInternal(encodedValue, offset, count);
        }