Decode() публичный статический Метод

simple Decode with default values
public static Decode ( string data ) : byte[]
data string
Результат byte[]
Пример #1
0
        public bool HandleWhisper(Conversation conversation, Participant participant, string text)
        {
            if (text.StartsWith(whisperHandshakePrefix) && text.StartsWith(whisperHandshakePrefix + "<~"))
            {
                return(CompleteWhisperHandshake(conversation, participant, Ascii85.Decode(text.Substring(whisperHandshakePrefix.Length))));
            }
            else if (text.StartsWith(whisperPrefix) && text.StartsWith(whisperPrefix + "<~"))
            {
                return(ExtractWhisper(conversation, participant, Ascii85.Decode(text.Substring(whisperHandshakePrefix.Length)), text));
            }

            return(false);
        }