C# Class Cimbalino.Phone.Toolkit.Services.PhotoChooserService

Represents an implementation of the IPhotoChooserService.
Inheritance: IPhotoChooserService
Show file Open project: Cimbalino/Cimbalino-Phone-Toolkit

Public Methods

Method Description
Show ( Action resultAction ) : void

Shows the Photo Chooser application.

Show ( bool showCamera, Action resultAction ) : void

Shows the Photo Chooser application, optionally presenting a button for launching the camera.

ShowAsync ( ) : Task

Shows the Photo Chooser application.

ShowAsync ( bool showCamera ) : Task

Shows the Photo Chooser application, optionally presenting a button for launching the camera.

Method Details

Show() public method

Shows the Photo Chooser application.
public Show ( Action resultAction ) : void
resultAction Action The to be called once the operation is finished.
return void

Show() public method

Shows the Photo Chooser application, optionally presenting a button for launching the camera.
public Show ( bool showCamera, Action resultAction ) : void
showCamera bool true if the user is presented with a button for launching the camera during the photo choosing process; otherwise, false.
resultAction Action The to be called once the operation is finished.
return void

ShowAsync() public method

Shows the Photo Chooser application.
public ShowAsync ( ) : Task
return Task

ShowAsync() public method

Shows the Photo Chooser application, optionally presenting a button for launching the camera.
public ShowAsync ( bool showCamera ) : Task
showCamera bool true if the user is presented with a button for launching the camera during the photo choosing process; otherwise, false.
return Task