IPAddress.None Campo

Definição

Fornece um endereço IP que indica que nenhum adaptador de rede deve ser usado. Este campo é somente leitura.

public: static initonly System::Net::IPAddress ^ None;
public static readonly System.Net.IPAddress None;
 staticval mutable None : System.Net.IPAddress
Public Shared ReadOnly None As IPAddress 

Valor do campo

Exemplos

O exemplo a seguir usa a None propriedade para indicar que nenhum adaptador de rede deve ser usado.

int main()
{
   
   // Gets the IP address indicating that no network interface should be used
   // and converts it to a String*.
   String^ address = IPAddress::None->ToString();
   Console::WriteLine( "IP address : {0}", address );
}
public static void Main()
{
   // Gets the IP address indicating that no network interface should be used
   // and converts it to a string.
   string address = IPAddress.None.ToString();
   Console.WriteLine("IP address : " + address);
}
Public Shared Sub Main()

    ' Gets the IP address indicating that no network interface should be used
    ' and converts it to a string. 
    Dim address As String = IPAddress.None.ToString()
    Console.WriteLine(("IP address : " + address))
End Sub

Comentários

O Socket.Bind método usa o None campo para indicar que um Socket não deve escutar a atividade do cliente. O None campo é equivalente a 255.255.255.255 na notação dotted-quad.

Aplica-se a