UIImagePickerMediaPickedEventArgs(NSDictionary) Constructor

Definition

Initializes a new instance of the UIImagePickerMediaPickedEventArgs class.

public UIImagePickerMediaPickedEventArgs (Foundation.NSDictionary info);
new UIKit.UIImagePickerMediaPickedEventArgs : Foundation.NSDictionary -> UIKit.UIImagePickerMediaPickedEventArgs

Parameters

info
NSDictionary

The NSDictionary received by the FinishedPickingMedia event or the paramter to the method invocation in the FinishedPickingMedia(UIImagePickerController, NSDictionary).

Remarks

class MyPicker : UIImagePickerControllerDelegate {
	public override void FinishedPickingMedia (UIImagePickerController picker, NSDictionary info)
	{
		var args = new UIImagePickerMediaPickedEventArgs (info);
		Console.WriteLine (args.OriginalImage);
	}
}

Applies to