Instance Method インスタンスメソッド

netService:didNotResolve:

Informs the delegate that an error occurred during resolution of a given service. 与えられたサービスの解決の間にエラーが発生したことを委任先に告知します。

Declaration 宣言

- (void)netService:(NSNetService *)sender 
     didNotResolve:(NSDictionary<NSString *,NSNumber *> *)errorDict;

Parameters パラメータ

sender

The service that did not resolve. 解決しなかったサービス。

errorDict

A dictionary containing information about the problem. The dictionary contains the keys NSNetServicesErrorCode and NSNetServicesErrorDomain. 問題についての情報を含んでいる辞書。辞書は、キーNSNetServicesErrorCodeNSNetServicesErrorDomainを含みます。

Discussion 議論

Clients may try to resolve again upon receiving this error. For example, a DNS rotary may yield different IP addresses on different resolution requests. A common error condition is that no addresses were resolved during the timeout period specified in resolveWithTimeout:. クライアントは、このエラーを受け取ることを再び決めるかもしれません。例えば、DNS回転は異なる解決要請に関して異なるIPアドレスを生み出すでしょう。よくあるエラー状態は、resolveWithTimeout:で指定された時間切れ期間の間に解決されたアドレスがないことです。

See Also 参照

Using Network Services ネットワークサービスを使う