Share via


IAVAssetResourceLoaderDelegate Interface

Definition

This interface represents the Objective-C protocol AVAssetResourceLoaderDelegate.

[Foundation.Protocol(Name="AVAssetResourceLoaderDelegate", WrapperType=typeof(AVFoundation.AVAssetResourceLoaderDelegateWrapper))]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForLoadingOfRequestedResource", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceLoadingRequest) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForLoadingOfRequestedResource:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DidCancelLoadingRequest", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceLoadingRequest) }, Selector="resourceLoader:didCancelLoadingRequest:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForResponseToAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(Foundation.NSUrlAuthenticationChallenge) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForResponseToAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DidCancelAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="resourceLoader:didCancelAuthenticationChallenge:")]
[Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForRenewalOfRequestedResource", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceRenewalRequest) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForRenewalOfRequestedResource:")]
public interface IAVAssetResourceLoaderDelegate : IDisposable, ObjCRuntime.INativeObject
[<Foundation.Protocol(Name="AVAssetResourceLoaderDelegate", WrapperType=typeof(AVFoundation.AVAssetResourceLoaderDelegateWrapper))>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForLoadingOfRequestedResource", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceLoadingRequest) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForLoadingOfRequestedResource:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DidCancelLoadingRequest", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceLoadingRequest) }, Selector="resourceLoader:didCancelLoadingRequest:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForResponseToAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(Foundation.NSUrlAuthenticationChallenge) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForResponseToAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="DidCancelAuthenticationChallenge", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(Foundation.NSUrlAuthenticationChallenge) }, Selector="resourceLoader:didCancelAuthenticationChallenge:")>]
[<Foundation.ProtocolMember(IsProperty=false, IsRequired=false, IsStatic=false, Name="ShouldWaitForRenewalOfRequestedResource", ParameterByRef=new System.Boolean[] { false, false }, ParameterType=new System.Type[] { typeof(AVFoundation.AVAssetResourceLoader), typeof(AVFoundation.AVAssetResourceRenewalRequest) }, ReturnType=typeof(System.Boolean), Selector="resourceLoader:shouldWaitForRenewalOfRequestedResource:")>]
type IAVAssetResourceLoaderDelegate = 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.

Properties

Name Description
Handle

Handle (pointer) to the unmanaged object representation.

(Inherited from INativeObject)

Methods

Name Description
DidCancelAuthenticationChallenge(AVAssetResourceLoader, NSUrlAuthenticationChallenge)
DidCancelLoadingRequest(AVAssetResourceLoader, AVAssetResourceLoadingRequest)
ShouldWaitForLoadingOfRequestedResource(AVAssetResourceLoader, AVAssetResourceLoadingRequest)
ShouldWaitForRenewalOfRequestedResource(AVAssetResourceLoader, AVAssetResourceRenewalRequest)
ShouldWaitForResponseToAuthenticationChallenge(AVAssetResourceLoader, NSUrlAuthenticationChallenge)

Extension Methods

Name Description
DidCancelAuthenticationChallenge(IAVAssetResourceLoaderDelegate, AVAssetResourceLoader, NSUrlAuthenticationChallenge)
DidCancelLoadingRequest(IAVAssetResourceLoaderDelegate, AVAssetResourceLoader, AVAssetResourceLoadingRequest)
ShouldWaitForLoadingOfRequestedResource(IAVAssetResourceLoaderDelegate, AVAssetResourceLoader, AVAssetResourceLoadingRequest)
ShouldWaitForRenewalOfRequestedResource(IAVAssetResourceLoaderDelegate, AVAssetResourceLoader, AVAssetResourceRenewalRequest)
ShouldWaitForResponseToAuthenticationChallenge(IAVAssetResourceLoaderDelegate, AVAssetResourceLoader, NSUrlAuthenticationChallenge)
GetHandle(INativeObject)
GetNonNullHandle(INativeObject, String)

Applies to