UnityEngine.WWWTranscoder.QPDecode C# (CSharp) Method

QPDecode() public static method

public static QPDecode ( string toEncode, [ e ) : string
toEncode string
e [
return string
        public static string QPDecode(string toEncode, [DefaultValue("Encoding.UTF8")] Encoding e)
        {
            byte[] bytes = Decode(WWW.DefaultEncoding.GetBytes(toEncode), qpEscapeChar, qpSpace);
            return e.GetString(bytes, 0, bytes.Length);
        }

Same methods

WWWTranscoder::QPDecode ( byte toEncode ) : byte[]
WWWTranscoder::QPDecode ( string toEncode ) : string

Usage Example

コード例 #1
0
 public static string QPDecode(string toEncode)
 {
     return(WWWTranscoder.QPDecode(toEncode, Encoding.UTF8));
 }
All Usage Examples Of UnityEngine.WWWTranscoder::QPDecode