Share via


IUIDocumentPickerDelegate.DidPickDocument Method

Definition

Overloads

Name Description
DidPickDocument(UIDocumentPickerViewController, NSUrl)

Developers should not use this deprecated method. Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.

DidPickDocument(UIDocumentPickerViewController, NSUrl[])

Developers may implement this method to respond after the user selects documents.

DidPickDocument(UIDocumentPickerViewController, NSUrl)

Developers should not use this deprecated method. Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.

[Foundation.Export("documentPicker:didPickDocumentAtURL:")]
[Foundation.OptionalMember]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void DidPickDocument(UIKit.UIDocumentPickerViewController controller, Foundation.NSUrl url);
[<Foundation.Export("documentPicker:didPickDocumentAtURL:")>]
[<Foundation.OptionalMember>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member DidPickDocument : UIKit.UIDocumentPickerViewController * Foundation.NSUrl -> unit
override this.DidPickDocument : UIKit.UIDocumentPickerViewController * Foundation.NSUrl -> unit

Parameters

controller
UIDocumentPickerViewController

The controller that made the request.

url
NSUrl

The URLS that was picked.

Attributes

Remarks

The meaning will differ dependent upon the mode of the document picker.

Applies to

DidPickDocument(UIDocumentPickerViewController, NSUrl[])

Developers may implement this method to respond after the user selects documents.

[Foundation.Export("documentPicker:didPickDocumentsAtURLs:")]
[Foundation.OptionalMember]
[ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)]
public virtual void DidPickDocument(UIKit.UIDocumentPickerViewController controller, Foundation.NSUrl[] urls);
[<Foundation.Export("documentPicker:didPickDocumentsAtURLs:")>]
[<Foundation.OptionalMember>]
[<ObjCRuntime.BindingImpl(ObjCRuntime.BindingImplOptions.GeneratedCode | ObjCRuntime.BindingImplOptions.Optimizable)>]
abstract member DidPickDocument : UIKit.UIDocumentPickerViewController * Foundation.NSUrl[] -> unit
override this.DidPickDocument : UIKit.UIDocumentPickerViewController * Foundation.NSUrl[] -> unit

Parameters

controller
UIDocumentPickerViewController

The controller that made the request.

urls
NSUrl[]

The URLS that were picked.

Attributes

Applies to