UnityEngine.WWWTranscoder.QPDecode C# (CSharp) Method

QPDecode() private method

private QPDecode ( string toEncode ) : string
toEncode string
return string
        public static string QPDecode(string toEncode)
        {
            Encoding e = Encoding.UTF8;
            return QPDecode(toEncode, e);
        }

Same methods

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

Usage Example

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