X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=blobdiff_plain;f=mcs%2Fclass%2Fcorlib%2FSystem.Security.Cryptography.X509Certificates%2FX509ContentType.cs;h=e7b0f14a554833a850974cbd370bc7cbdb3276a8;hb=0717f141b92db56481cc09af70c026d7ffad8921;hp=5f09a8d0892c1fa66e4c2591cee09d7ce3d6324a;hpb=0443306d611d0830e27327e1f0a3ef3457dfa535;p=mono.git diff --git a/mcs/class/corlib/System.Security.Cryptography.X509Certificates/X509ContentType.cs b/mcs/class/corlib/System.Security.Cryptography.X509Certificates/X509ContentType.cs index 5f09a8d0892..e7b0f14a554 100644 --- a/mcs/class/corlib/System.Security.Cryptography.X509Certificates/X509ContentType.cs +++ b/mcs/class/corlib/System.Security.Cryptography.X509Certificates/X509ContentType.cs @@ -32,20 +32,19 @@ namespace System.Security.Cryptography.X509Certificates { // Note: Definitions are useful for 1.0 and 1.1 so we declare them internal -#if NET_2_0 [ComVisible (true)] public -#else - internal -#endif enum X509ContentType { Unknown, Cert, +#if !MOONLIGHT + // not supported by Silverlight 2.0 (NET_2_1) SerializedCert, Pfx, SerializedStore, Pkcs7, Authenticode, Pkcs12 = Pfx +#endif } }