SIPSorcery.Net.STUNv2AddressAttribute.STUNv2AddressAttribute C# (CSharp) Method

STUNv2AddressAttribute() public method

public STUNv2AddressAttribute ( STUNv2AttributeTypesEnum attributeType, int port, IPAddress address ) : System
attributeType STUNv2AttributeTypesEnum
port int
address System.Net.IPAddress
return System
        public STUNv2AddressAttribute(STUNv2AttributeTypesEnum attributeType, int port, IPAddress address)
            : base(attributeType, null)
        {
            Port = port;
            Address = address;

            base.AttributeType = attributeType;
            //base.Length = ADDRESS_ATTRIBUTE_LENGTH;
        }

Same methods

STUNv2AddressAttribute::STUNv2AddressAttribute ( byte attributeValue ) : System