コード例 #1
0
ファイル: ASProxyBase64.cs プロジェクト: salarcode/ASProxy
        public static string DecodeFromASProxyBase64(string b64Input)
        {
            var decoder = new ASProxyDecoderBase64();

            return(decoder.DecodeString(b64Input));
        }
コード例 #2
0
ファイル: UrlEncoders.cs プロジェクト: EdiCarlos/MyPractices
 public static string DecodeFromASProxyBase64(string b64input)
 {
     ASProxyDecoderBase64 decoder = new ASProxyDecoderBase64();
     return decoder.DecodeString(b64input);
 }