- connection:willSendRequestForAuthenticationChallenge:
- connection:canAuthenticateAgainstProtectionSpace:
- connection:didCancelAuthenticationChallenge:
- connection:didReceiveAuthenticationChallenge:
Availability 有効性
Technology
- (BOOL)connectionShouldUseCredentialStorage:(NSURLConnection
*)connection;
connection
The connection sending the message. メッセージを送っている接続。
This method is called before any attempt to authenticate is made. このメソッドは、認証がなされるためのあらゆる試みの前に呼び出されます。
If you return NO
, the connection does not consult the credential storage automatically, and does not store credentials. However, in your connection:didReceiveAuthenticationChallenge: method, you can consult the credential storage yourself and store credentials yourself, as needed.
あなたがNO
を返すならば、接続は自動的に資格情報ストレージを考慮に入れません、そして資格情報を格納しません。しかしながら、あなたの connection:didReceiveAuthenticationChallenge: メソッドにおいて、あなたはあなた自身で資格情報ストレージを考慮に入れること、そして資格情報を格納することができます、必要に応じて。
Not implementing this method is the same as returning YES
.
このメソッドを実装しないことは、YES
を返すことと同じです。
Important 重要
Prior to iOS 7 and OS X v10.9, the connection
method is never called on delegates that implement the connection:
method.
iOS 7とOS X v10.9より前に、connection
メソッドは、connection:
メソッドを実装する委任先の上で決して呼び出されません。
In later operating systems, if the delegate implements the connection:
method, the connection
method is called only if the app’s deployment target is at least iOS 7 or OS X v10.9.
より後のオペレーティングシステムでは、委任先がconnection:
メソッドを実装するならば、connection
メソッドは、アプリの配備目標が最低でもiOS 7またはOS X 10.9である場合にのみ呼び出されます。
- connection:willSendRequestForAuthenticationChallenge:
- connection:canAuthenticateAgainstProtectionSpace:
- connection:didCancelAuthenticationChallenge:
- connection:didReceiveAuthenticationChallenge: