Instance Property インスタンスプロパティ

addresses

A read-only array containing NSData objects, each of which contains a socket address for the service. 読み出し専用の配列でNSDataオブジェクトいくつかを含んでいます、そのそれぞれがサービスに対するソケットアドレスを含みます。

Declaration 宣言

@property(nullable, readonly, copy) NSArray<NSData *> *addresses;

Discussion 議論

An array containing NSData objects, each of which contains a socket address for the service. Each NSData object in the returned array contains an appropriate sockaddr structure that you can use to connect to the socket. The exact type of this structure depends on the service to which you are connecting. If no addresses were resolved for the service, the returned array contains zero elements. ひとつの配列でNSDataオブジェクトいくつかを含んでいます、そのそれぞれがサービスに対するソケットアドレスを含みます。返される配列の中の各NSDataは、適切なsockaddr構造体を含んでいます、それはあなたがソケットに接続するのに使うことができます。この構造体の正確な型は、あなたが接続しているサービスに依存します。アドレスがサービスに対して解決できなかったならば、返される配列はゼロ個の要素を含みます。

It is possible for a single service to resolve to more than one address or not resolve to any addresses. A service might resolve to multiple addresses if the computer publishing the service is currently multihoming. ある単一のサービスに対して、1つ以上のアドレスを解決するか何もアドレスを解決しないことが可能です。あるサービスは複数のアドレスを解決するかもしれません、もしサービスを出版しているコンピュータが現在マルチホーミングであるならば。

See Also 参照

Configuring Network Services ネットワークサービスを構成設定する

Related Documentation 関連文書