Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs')
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs10
1 files changed, 2 insertions, 8 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs b/mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs
index 38496b8f092..a8bf1bde5e7 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Xml/SignedInfo.cs
@@ -44,17 +44,10 @@ namespace System.Security.Cryptography.Xml {
private string signatureLength;
private XmlElement element;
-#if NET_2_0
- XmlDsigC14NTransform canonicalizationMethodObject;
-#endif
-
public SignedInfo()
{
references = new ArrayList ();
c14nMethod = "http://www.w3.org/TR/2001/REC-xml-c14n-20010315";
-#if NET_2_0
- canonicalizationMethodObject = new XmlDsigC14NTransform ();
-#endif
}
public string CanonicalizationMethod {
@@ -67,8 +60,9 @@ namespace System.Security.Cryptography.Xml {
#if NET_2_0
[ComVisible (false)]
+ [MonoTODO]
public Transform CanonicalizationMethodObject {
- get { return canonicalizationMethodObject; }
+ get { throw new NotImplementedException (); }
}
#endif