2009-06-30 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / class / corlib / System.Security.Policy / Publisher.cs
index 21a774ffbdce73e66dc44e8415ea24b5dc6c6d7b..7309894f113c76d466f1fc2665eb991d3c75e389 100644 (file)
@@ -79,7 +79,7 @@ namespace System.Security.Policy {
                {
                        Publisher p = (o as Publisher);
                        if (p == null)
-                               throw new ArgumentException ("not a Publisher");
+                               throw new ArgumentException ("o", Locale.GetText ("not a Publisher instance."));
                        return m_cert.Equals (p.Certificate);
                }
        
@@ -102,19 +102,18 @@ namespace System.Security.Policy {
 
                // interface IBuiltInEvidence
 
-               [MonoTODO]
                int IBuiltInEvidence.GetRequiredSize (bool verbose) 
                {
                        return (verbose ? 3 : 1) + m_cert.GetRawCertData ().Length;
                }
 
-               [MonoTODO]
+               [MonoTODO ("IBuiltInEvidence")]
                int IBuiltInEvidence.InitFromBuffer (char [] buffer, int position) 
                {
                        return 0;
                }
 
-               [MonoTODO]
+               [MonoTODO ("IBuiltInEvidence")]
                int IBuiltInEvidence.OutputToBuffer (char [] buffer, int position, bool verbose) 
                {
                        return 0;