00001
00002
00003
00004
00005
00006
00007 #import "NSObject.h"
00008
00009 @class NSURLAuthenticationChallengeInternal;
00010
00011 @interface NSURLAuthenticationChallenge : NSObject
00012 {
00013 NSURLAuthenticationChallengeInternal *_internal;
00014 }
00015
00016 - (id)init;
00017 - (id)initWithProtectionSpace:(id)fp8 proposedCredential:(id)fp12 previousFailureCount:(int)fp16 failureResponse:(id)fp20 error:(id)fp24 sender:(id)fp28;
00018 - (id)initWithAuthenticationChallenge:(id)fp8 sender:(id)fp12;
00019 - (void)dealloc;
00020 - (id)protectionSpace;
00021 - (id)proposedCredential;
00022 - (int)previousFailureCount;
00023 - (id)error;
00024 - (id)failureResponse;
00025 - (id)sender;
00026
00027 @end
00028