コード例 #1
0
ファイル: X509Certificate.cs プロジェクト: wujun4code/mono
        public X509Certificate(IntPtr handle)
        {
            if (handle == IntPtr.Zero)
            {
                throw new ArgumentException("Invalid handle.");
            }

            impl = X509Helper.InitFromHandle(handle);
        }