Exemple #1
0
 public void Lock() => IOSCommandExecutionHelper.Lock(this);
Exemple #2
0
 public bool IsLocked() => IOSCommandExecutionHelper.IsLocked(this);
Exemple #3
0
 public void Unlock() => IOSCommandExecutionHelper.Unlock(this);
Exemple #4
0
 public void ShakeDevice() => IOSCommandExecutionHelper.ShakeDevice(this);
Exemple #5
0
 public void PerformTouchID(bool match) => IOSCommandExecutionHelper.PerformTouchID(this, match);
Exemple #6
0
 /// <summary>
 /// Gets the image from the clipboard
 /// </summary>
 /// <returns>The image content of the clipboard as an Image object or null if there is no image on the clipboard</returns>
 public Image GetClipboardImage() => IOSCommandExecutionHelper.GetClipboardImage(this);
Exemple #7
0
 /// <summary>
 /// Sets the image to the clipboard
 /// </summary>
 /// <param name="image"></param>
 public void SetClipboardImage(Image image) => IOSCommandExecutionHelper.SetClipboardImage(this, image);
Exemple #8
0
 /// <summary>
 /// Gets the url string from the clipboard
 /// </summary>
 /// <returns>The url string content of the clipboard or an empty string if the clipboard is empty</returns>
 public string GetClipboardUrl() => IOSCommandExecutionHelper.GetClipboardUrl(this);
Exemple #9
0
 /// <summary>
 /// Sets the url string to the clipboard
 /// </summary>
 /// <param name="url"></param>
 public void SetClipboardUrl(string url) => IOSCommandExecutionHelper.SetClipboardUrl(this, url);
 public void SetSetting(string setting, object value) =>
 IOSCommandExecutionHelper.SetSetting(this, setting, value);