次の方法で共有


EndpointPair.RemoteServiceName プロパティ

定義

EndpointPair オブジェクトのリモート サービス名を取得または設定します。

public:
 property Platform::String ^ RemoteServiceName { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring RemoteServiceName();

void RemoteServiceName(winrt::hstring value);
public string RemoteServiceName { get; set; }
var string = endpointPair.remoteServiceName;
endpointPair.remoteServiceName = string;
Public Property RemoteServiceName As String

プロパティ値

String

Platform::String

winrt::hstring

EndpointPair オブジェクトのリモート サービス名。

注釈

RemoteServiceName プロパティには、リモート ネットワーク宛先のサービス名または TCP または UDP ポート番号を含めることができます。 クライアント アプリでネットワーク接続を確立するには、 EndpointPair オブジェクトのリモート エンドポイントにリモート サービス名を指定する必要があります。

RemoteServiceName プロパティは、次のいずれかに設定できます。

  • TCP または UDP ポート番号の数値リテラル (たとえば、http に使用される TCP ポートの場合は 80)。
  • ローカル コンピューター上の次のファイル内の文字列と一致するポート番号 ("http"など) の文字列エイリアス: %WINDIR%\system32\drivers\etc\services
  • SRV レコードを使用して名前空間プロバイダーによって解決できるサービス名。 RemoteServiceName プロパティを null に設定するとエラーになります。

適用対象

こちらもご覧ください