Aracılığıyla paylaş


PhysicalAddress.None Alan

Tanım

Uzunluk adresi sıfır olan yeni PhysicalAddress bir örnek döndürür. Bu alan salt okunur durumdadır.

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

Alan Değeri

Örnekler

Aşağıdaki kod örneği, bir adresi ayrıştırma sonucunu test etmek için bu alanın kullanılmasını gösterir.

PhysicalAddress^ StrictParseAddress( String^ address )
{
   PhysicalAddress^ newAddress = PhysicalAddress::Parse( address );
   if ( PhysicalAddress::None->Equals( newAddress ) )
      return nullptr;

   return newAddress;
}
public static PhysicalAddress? StrictParseAddress(string? address)
{
    PhysicalAddress newAddress = PhysicalAddress.Parse(address);
    if (PhysicalAddress.None.Equals(newAddress))
        return null;

    return newAddress;
}

Açıklamalar

Parse adres belirtirseniz null yöntemi döndürülüyorNone.

Şunlara uygulanır