// // ASIAuthenticationDialog.h // Part of ASIHTTPRequest -> http://allseeing-i.com/ASIHTTPRequest // // Created by Ben Copsey on 21/08/2009. // Copyright 2009 All-Seeing Interactive. All rights reserved. // #import @class ASIHTTPRequest; typedef enum _ASIAuthenticationType { ASIStandardAuthenticationType = 0, ASIProxyAuthenticationType = 1 } ASIAuthenticationType; @interface ASIAuthenticationDialog : NSObject { ASIHTTPRequest *request; UIActionSheet *loginDialog; ASIAuthenticationType type; } + (void)presentAuthenticationDialogForRequest:(ASIHTTPRequest *)request; + (void)presentProxyAuthenticationDialogForRequest:(ASIHTTPRequest *)request; @property (retain) ASIHTTPRequest *request; @property (retain) UIActionSheet *loginDialog; @property (assign) ASIAuthenticationType type; @end