forked from microsoft/referencesource
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEncryptionMethod.cs
More file actions
50 lines (43 loc) · 1.44 KB
/
Copy pathEncryptionMethod.cs
File metadata and controls
50 lines (43 loc) · 1.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
//------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
//------------------------------------------------------------
namespace System.IdentityModel.Metadata
{
using System;
/// <summary>
/// Defines the encryption method.
/// </summary>
public class EncryptionMethod
{
Uri _algorithm;
/// <summary>
/// Constructs an encryption method with the algorithm.
/// </summary>
/// <param name="algorithm">The encryption algorithm.</param>
/// <exception cref="ArgumentNullException">If the algorithm is null.</exception>
public EncryptionMethod(Uri algorithm)
{
if (algorithm == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("algorithm");
}
_algorithm = algorithm;
}
/// <summary>
/// Gets or sets the encryption method algorithm attribute.
/// </summary>
/// <exception cref="ArgumentNullException">If the new value is null.</exception>
public Uri Algorithm
{
get { return _algorithm; }
set
{
if (value == null)
{
throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("value");
}
_algorithm = value;
}
}
}
}