Class

NSHost

A representation of an individual host on the network. ネットワーク上の特定のホストの表現。

Declaration 宣言

@interface NSHost : NSObject

Overview 概要

The NSHost class provides methods to access the network name and address information for a host. Instances of the NSHost class represent individual hosts on a network. NSHostクラスは、あるホストのネットワークの名前およびアドレス情報にアクセスするためのメソッドを提供します。NSHostクラスのインスタンスは、あるネットワーク上の個々のホストを表します。 Use NSHost objects to get the current host’s names and addresses and to look up other hosts by name or by address.

To create an NSHost object, use the currentHost, hostWithAddress:, or hostWithName: class methods (don’t use alloc and init). These methods use available network administration services to discover all names and addresses for the host requested. They don’t attempt to contact the host itself, however. This approach avoids untimely delays due to a host being unavailable, but it may result in incomplete information about the host. NSHostオブジェクトを作成するには、currentHosthostWithAddress:、またはhostWithName:クラスメソッドを使ってください(allocinitを使わないでください)。これらのメソッドは、利用可能なネットワーク管理サービスを使って、要請されたホストに対する全ての名前とアドレスを発見します。それらは、しかしながら、ホストそれ自体に接触を試みません。この取り組み方は、時期悪くホストが利用可能でないことが原因の遅滞を防ぎます、しかしそれはホストについての不完全な情報という結果になるかもしれません。

An NSHost object contains all of the network addresses and names discovered for a given host by the network administration services. Each NSHost object may contain several addresses and have more than one name. If an NSHost object has more than one name, the additional names are variations on the same name, typically the basic host name plus the fully qualified domain name. For example, with a host name "sales" in the domain "anycorp.com", an NSHost object can hold both the names "sales" and "sales.anycorp.com". NSHostオブジェクトは、ネットワーク管理サービスによって、指定ホストに対して発見されたネットワークのアドレスおよび名前の全てを含みます。各NSHostオブジェクトは、いくつかのアドレスを含み、そして複数の名前を持つかもしれません。NSHostオブジェクトが複数の名前を持つならば、追加の名前は同じ名前の変形版です、概して基本ホスト名に完全修飾ドメイン名を足したもの。例えば、ホスト名"sales"はドメイン"anycorp.com"において、あるNSHostオブジェクトが名前"sales""sales.anycorp.com"の両方を持つことができます。

NSHost methods are thread-safe. NSHostメソッドは、スレッド安全です。

Topics 話題

Creating Hosts ホストを作成する

Getting Host Information ホスト情報を得る

Comparing Hosts ホストを比較する

Managing the Host Cache ホストキャッシュを管理する

Relationships 関係

Inherits From 継承元

See Also 参照

Sockets さまざまなソケット