コード例 #1
0
		/// <summary>
		/// Initializes a new instance of the <see cref="WinPhone8CryptoProvider" /> class.
		/// </summary>
		/// <param name="securityLevel">The security level to apply to this instance.  The default is <see cref="SecurityLevel.Maximum"/>.</param>
		public WinPhone8CryptoProvider(SecurityLevel securityLevel) {
			Requires.NotNull(securityLevel, "securityLevel");
			securityLevel.Apply(this);
		}
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="DesktopCryptoProvider" /> class.
 /// </summary>
 /// <param name="securityLevel">The security level to apply to this instance.  The default is <see cref="SecurityLevel.Maximum"/>.</param>
 public DesktopCryptoProvider(SecurityLevel securityLevel)
 {
     Requires.NotNull(securityLevel, "securityLevel");
     securityLevel.Apply(this);
 }
コード例 #3
0
		/// <summary>
		/// Initializes a new instance of the <see cref="DesktopCryptoProvider" /> class.
		/// </summary>
		/// <param name="securityLevel">The security level to apply to this instance.  The default is <see cref="SecurityLevel.Maximum"/>.</param>
		public DesktopCryptoProvider(SecurityLevel securityLevel) {
			Requires.NotNull(securityLevel, "securityLevel");
			securityLevel.Apply(this);
		}
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="WinPhone8CryptoProvider" /> class.
 /// </summary>
 /// <param name="securityLevel">The security level to apply to this instance.  The default is <see cref="SecurityLevel.Maximum"/>.</param>
 public WinPhone8CryptoProvider(SecurityLevel securityLevel)
 {
     Requires.NotNull(securityLevel, "securityLevel");
     securityLevel.Apply(this);
 }