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

authenticateComponents:withData:

Returns a Boolean value that indicates whether given authentication data is valid for a given set of components. あるブール値を返します、それは与えられた認証データがある与えられたひと揃いの構成要素に対して有効であるかどうかを指し示します。

Declaration 宣言

- (BOOL)authenticateComponents:(NSArray *)components 
                      withData:(NSData *)signature;

Parameters パラメータ

components

An array that contains NSData and NSPort objects belonging to an NSPortMessage object. See the NSPortMessage class specification for more information. ある配列、それはNSDataNSPortオブジェクトを含みます、それらはNSPortMessageオブジェクトに属しているものです。NSPortMessageクラス仕様をさらなる情報のために見てください。

authenticationData

Authentication data created by the delegate of the peer NSConnection object with authenticationDataForComponents:. ピアNSConnectionオブジェクトの委任先によってauthenticationDataForComponents:で作成される認証データ。

Return Value 戻り値

YES if the authenticationData provided is valid for components, otherwise NO. YES、もし提供されたauthenticationDatacomponentsに対して有効ならば、そうでなければNO

Discussion 議論

Use this message for validation of incoming messages. An NSConnection object raises an NSFailedAuthenticationException on receipt of a remote message the delegate doesn’t authenticate. このメッセージをやって来るメッセージの検証に使ってください。NSConnectionオブジェクトは、NSFailedAuthenticationExceptionを、委任先が認証しないリモートメッセージを受け取るとすぐに引き起こします。

See Also 参照

Authenticating 認証する

Related Documentation 関連文書