UIImagePickerMediaPickedEventArgs(NSDictionary) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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);
}
}