コード例 #1
0
 /// <summary>
 /// Sets the cloud cache encrypter. The cloud cache encrypter is a delegate that
 /// encrypts a byte buffer before it is saved to local storage, and decrypts the
 /// buffer after it's read from storage. It is only used in platforms where the
 /// cloud cache is implemented by the plugin as opposed to the underlying system
 /// (currently, only iOS).</summary>
 /// <param name='encrypter'>
 /// The encrypter delegate.
 /// </param>
 public void SetCloudCacheEncrypter(BufferEncrypter encrypter)
 {
     mClient.SetCloudCacheEncrypter(encrypter);
 }