Share via


INSUrlAuthenticationChallengeSender Interface

Definition

This interface represents the Objective-C protocol NSURLAuthenticationChallengeSender.

[Foundation.Protocol(Name="NSURLAuthenticationChallengeSender", WrapperType=typeof(Foundation.NSUrlAuthenticationChallengeSenderWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="UseCredential", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlCredential), typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="useCredential:forAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="ContinueWithoutCredential", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="continueWithoutCredentialForAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="CancelAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="cancelAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PerformDefaultHandling", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="performDefaultHandlingForAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="RejectProtectionSpaceAndContinue", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="rejectProtectionSpaceAndContinueWithChallenge:")]
public interface INSUrlAuthenticationChallengeSender : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="NSURLAuthenticationChallengeSender", WrapperType=typeof(Foundation.NSUrlAuthenticationChallengeSenderWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="UseCredential", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlCredential), typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="useCredential:forAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="ContinueWithoutCredential", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="continueWithoutCredentialForAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=true, IsStatic=false, Name="CancelAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="cancelAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="PerformDefaultHandling", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="performDefaultHandlingForAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="RejectProtectionSpaceAndContinue", ParameterByRef=new System.Boolean[] { false }, ParameterType=new System.Type[] { typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="rejectProtectionSpaceAndContinueWithChallenge:")>]
type INSUrlAuthenticationChallengeSender = interface
    interface INativeObject
    interface IDisposable
Derived
Attributes
Implements

Remarks

A class that implements this interface (and subclasses NSObject) will be exported to Objective-C as implementing the Objective-C protocol this interface represents.

A class may also implement members from this interface to implement members from the protocol.

Applies to