2004-06-04 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Security / System.Security.Cryptography.Xml / DataReference.cs
1 //
2 // DataReference.cs - DataReference implementation for XML Encryption
3 // http://www.w3.org/2001/04/xmlenc#sec-ReferenceList
4 //
5 // Author:
6 //      Tim Coleman (tim@timcoleman.com)
7 //
8 // Copyright (C) Tim Coleman, 2004
9
10 #if NET_2_0
11
12 using System.Xml;
13
14 namespace System.Security.Cryptography.Xml {
15         public sealed class DataReference : EncryptedReference {
16
17                 #region Constructors
18         
19                 public DataReference ()
20                         : base ()
21                 {
22                         ReferenceType = XmlEncryption.ElementNames.DataReference;
23                 }
24         
25                 public DataReference (string uri)
26                         : base (uri)
27                 {
28                         ReferenceType = XmlEncryption.ElementNames.DataReference;
29                 }
30         
31                 public DataReference (string uri, TransformChain tc)
32                         : base (uri, tc)
33                 {
34                         ReferenceType = XmlEncryption.ElementNames.DataReference;
35                 }
36         
37                 #endregion // Constructors
38         }
39 }
40
41 #endif