UIDocumentPickerDelegate.DidPickDocument Method

Definition

Overloads

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:")]
[ObjCRuntime.Deprecated(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.None, "Implement 'DidPickDocument (UIDocumentPickerViewController, NSUrl[])' instead.")]
public abstract void DidPickDocument (UIKit.UIDocumentPickerViewController controller, Foundation.NSUrl url);
abstract member DidPickDocument : UIKit.UIDocumentPickerViewController * Foundation.NSUrl -> unit

Parameters

controller
UIDocumentPickerViewController

The controller that made the request.

url
NSUrl

The URLS that was picked.

Implements

Attributes

Applies to

DidPickDocument(UIDocumentPickerViewController, NSUrl[])

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

[Foundation.Export("documentPicker:didPickDocumentsAtURLs:")]
[ObjCRuntime.Introduced(ObjCRuntime.PlatformName.iOS, 11, 0, ObjCRuntime.PlatformArchitecture.All, null)]
public virtual void DidPickDocument (UIKit.UIDocumentPickerViewController controller, Foundation.NSUrl[] urls);
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