Преглед изворни кода

2004-03-26 Sebastien Pouliot <[email protected]>

	* XmlSignature.cs: Added constants for Manifest element and URI.

svn path=/trunk/mcs/; revision=24646
Sebastien Pouliot пре 22 година
родитељ
комит
60a062e2e5

+ 1 - 0
mcs/class/System.Security/System.Security.Cryptography.Xml/ChangeLog

@@ -8,6 +8,7 @@
 	manifests. Made some changes to reuse existing code as much as 
 	possible. Better support for local/remote files - but requires
 	catching an Uri exception for local files :-(.
+	* XmlSignature.cs: Added constants for Manifest element and URI.
 
 2004-03-26  Atsushi Enomoto <[email protected]>
 

+ 5 - 0
mcs/class/System.Security/System.Security.Cryptography.Xml/XmlSignature.cs

@@ -28,6 +28,7 @@ namespace System.Security.Cryptography.Xml {
 			public const string KeyInfo = "KeyInfo";
 			public const string KeyName = "KeyName";
 			public const string KeyValue = "KeyValue";
+			public const string Manifest = "Manifest";
 			public const string Object = "Object";
 			public const string Reference = "Reference";
 #if NET_1_0
@@ -76,6 +77,10 @@ namespace System.Security.Cryptography.Xml {
 			public const string XmlDsigXsltTransform =  "http://www.w3.org/TR/1999/REC-xslt-19991116";
 		}
 
+		public class Uri {
+			public const string Manifest = "http://www.w3.org/2000/09/xmldsig#Manifest";
+		}
+
 		public const string NamespaceURI = "http://www.w3.org/2000/09/xmldsig#";
 		public const string Prefix = "ds";