Praeclarum.CopyToClipboardCommand.ExecuteAsync C# (CSharp) Method

ExecuteAsync() public method

public ExecuteAsync ( ) : System.Threading.Tasks.Task
return System.Threading.Tasks.Task
		public override async Task ExecuteAsync ()
		{
			await base.ExecuteAsync ();

			UIPasteboard.General.String = Text ?? "";

			new UIAlertView ("Copied", Text ?? "", null, "OK").Show ();
		}
	}