Initializer

init(user:password:persistence:)

Creates a URL credential instance initialized with a given user name and password, using a given persistence setting. URL資格情報インスタンスを作成します、ある与えられたユーザ名とパスワードで初期化されます、ある与えられた存続設定を使います。

Declaration 宣言

init(user: String, 
password: String, 
persistence: URLCredential.Persistence)

Parameters パラメータ

user

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

password

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

persistence

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

Return Value 戻り値

An instance of URLCredential, initialized with user name user, password password, and using persistence setting persistence. URLCredentialのあるインスタンス、それはユーザ名user、パスワードpassword、そして持続性設定persistenceを使って初期化されます。

Discussion 議論

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

See Also 参照

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

Related Documentation 関連文書