SharpTox.Dns.ToxDnsFunctions.New C# (CSharp) Méthode

New() private méthode

private New ( byte publicKey ) : ToxDnsHandle
publicKey byte
Résultat ToxDnsHandle
        internal static extern ToxDnsHandle New(byte[] publicKey);

Usage Example

Exemple #1
0
        /// <summary>
        /// Initializes a new instance of tox dns3.
        /// </summary>
        /// <param name="publicKey"></param>
        public ToxDns(string publicKey)
        {
            _toxDns3 = ToxDnsFunctions.New(ToxTools.StringToHexBin(publicKey));

            if (_toxDns3 == null || _toxDns3.IsInvalid)
            {
                throw new Exception("Could not create a new tox_dns3 instance with the provided public_key");
            }
        }
All Usage Examples Of SharpTox.Dns.ToxDnsFunctions::New