Aracılığıyla paylaş


WebRequestInformation.UserHostAddress Özellik

Tanım

Kullanıcı ana bilgisayar adresini alır.

public:
 property System::String ^ UserHostAddress { System::String ^ get(); };
public string UserHostAddress { get; }
member this.UserHostAddress : string
Public ReadOnly Property UserHostAddress As String

Özellik Değeri

String

Kullanıcı ana bilgisayar adresi.

Açıklamalar

Aşağıdaki kod örneği, kullanıcı ana bilgisayar adresinin nasıl alınacaklarını gösterir.

// Get the request user host address.
public string GetRequestUserHostAdddress()
{
    // Get the request user host address.
    return (string.Format(
        "Request user host address: {0}",
        RequestInformation.UserHostAddress));
}
' Get the request user host address.
Public Function GetRequestUserHostAdddress() As String
   ' Get the request user host address.
     Return String.Format( _
     "Request user host address: {0}", _
     RequestInformation.UserHostAddress)
End Function 'GetRequestUserHostAdddress

Şunlara uygulanır