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:
authorMarek Safar <marek.safar@gmail.com>2010-10-15 18:07:08 +0400
committerMarek Safar <marek.safar@gmail.com>2010-10-15 18:20:25 +0400
commitaad016fd8720481cf3a776a7c77e492f4b5da697 (patch)
tree3075fdac64b67b53669c971f93e232cdacf5f698 /mcs/class/System.Security/System.Security.Cryptography.Xml
parent894b26feca4a37cc0a3305163a212ffd94a6a207 (diff)
Clean up few more warnings
Diffstat (limited to 'mcs/class/System.Security/System.Security.Cryptography.Xml')
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptedReference.cs5
-rw-r--r--mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptionProperty.cs4
2 files changed, 4 insertions, 5 deletions
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptedReference.cs b/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptedReference.cs
index 056bdefdafb..942bd977419 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptedReference.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptedReference.cs
@@ -37,7 +37,6 @@ namespace System.Security.Cryptography.Xml {
#region Fields
- bool cacheValid;
string referenceType;
string uri;
TransformChain tc;
@@ -68,9 +67,9 @@ namespace System.Security.Cryptography.Xml {
#region Properties
- [MonoTODO()]
+ [MonoTODO("Always returns false")]
protected internal bool CacheValid {
- get { return cacheValid; }
+ get { return false; }
}
protected string ReferenceType {
diff --git a/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptionProperty.cs b/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptionProperty.cs
index ac263b52001..0dc8fc36526 100644
--- a/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptionProperty.cs
+++ b/mcs/class/System.Security/System.Security.Cryptography.Xml/EncryptionProperty.cs
@@ -37,7 +37,6 @@ namespace System.Security.Cryptography.Xml {
#region Fields
- XmlElement elemProp;
string id;
string target;
@@ -62,8 +61,9 @@ namespace System.Security.Cryptography.Xml {
get { return id; }
}
+ [MonoTODO ("Always returns null")]
public XmlElement PropertyElement {
- get { return elemProp; }
+ get { return null; }
set { LoadXml (value); }
}