Ejemplo n.º 1
0
        private string OnDeCryptCallBack(string value)
        {
            DecryptEventArgs e = new DecryptEventArgs(value);

            if (onDeCrypt.IsAssigned)
            {
                onDeCrypt.Raise(e);
            }

            return(ToUTF8(e.Resposta));
        }
Ejemplo n.º 2
0
		private string OnDeCryptCallBack(string value)
		{
			DecryptEventArgs e = new DecryptEventArgs(value);

			if (onDeCrypt.IsAssigned)
				onDeCrypt.Raise(e);

			return ToUTF8(e.Resposta);
		}