Type Method 型メソッド

credentialWithUser:password:persistence:

Creates a URL credential instance for internet password authentication with a given user name and password, using a given persistence setting. URL資格情報インスタンスをインターネットパスワード認証に対して、ある与えられたユーザ名とパスワードで作成します、ある与えられた存続設定を使います。

Declaration 宣言

+ (NSURLCredential *)credentialWithUser:(NSString *)user 
                               password:(NSString *)password 
                            persistence:(NSURLCredentialPersistence)persistence;

Parameters パラメータ

user

The user for the credential. 資格情報に対するユーザ。

password

The password for user. userに対するパスワード。

persistence

A NSURLCredentialPersistence value indicating whether the credential should be stored permanently, for the duration of the current session, or not at all. 資格情報が格納されるのは、永久に、現在のセッションの間に対して、または少しもされないべきかを指し示しているNSURLCredentialPersistence値。

Return Value 戻り値

A new URL credential object with user name user, password password, and using persistence setting persistence. ある新しいURL資格情報オブジェクト、それはユーザ名user、パスワードpasswordを持ちます、そして持続設定persistenceを使っています。

Discussion 議論

If persistence is NSURLCredentialPersistencePermanent, the credential is stored in the keychain. If persistence is NSURLCredentialPersistenceSynchronizable, it is also synchronized to the user’s other devices. persistenceNSURLCredentialPersistencePermanentならば、資格情報はキーチェーンの中に格納されます。persistenceNSURLCredentialPersistenceSynchronizableならば、それはまたユーザのもつ他のデバイスと同期されます。

See Also 参照

Creating a Credential 資格情報を作成する