[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / class / corlib / System.Security.Cryptography.X509Certificates / X509Helper.MonoTouch.opt.cs
blob19f1c4eabb55890aab24ca7d309177c7de43b812
1 #if MONOTOUCH || XAMMAC
3 // this file is a shim to enable compiling monotouch profiles without mono-extensions
4 namespace System.Security.Cryptography.X509Certificates
6 static partial class X509Helper
8 public static X509CertificateImpl InitFromHandle (IntPtr handle)
10 throw new NotSupportedException ();
13 public static X509CertificateImpl Import (byte[] rawData, string password, X509KeyStorageFlags keyStorageFlags)
15 throw new NotSupportedException ();
20 #endif