X509CertificateInitiatorClientCredential.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Security / X509CertificateInitiatorClientCredential.cs / 1 / X509CertificateInitiatorClientCredential.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

namespace System.ServiceModel.Security 
{
    using System.Security.Cryptography.X509Certificates; 
    using System.ServiceModel; 

    public sealed class X509CertificateInitiatorClientCredential 
    {
        internal const StoreLocation DefaultStoreLocation = StoreLocation.CurrentUser;
        internal const StoreName DefaultStoreName = StoreName.My;
        internal const X509FindType DefaultFindType = X509FindType.FindBySubjectDistinguishedName; 

        X509Certificate2 certificate; 
        bool isReadOnly; 

        internal X509CertificateInitiatorClientCredential() 
        {
            // empty
        }
 
        internal X509CertificateInitiatorClientCredential(X509CertificateInitiatorClientCredential other)
        { 
            this.certificate = other.certificate; 
            this.isReadOnly = other.isReadOnly;
        } 

        public X509Certificate2 Certificate
        {
            get 
            {
                return this.certificate; 
            } 
            set
            { 
                ThrowIfImmutable();
                this.certificate = value;
            }
        } 

        public void SetCertificate(string subjectName, StoreLocation storeLocation, StoreName storeName) 
        { 
            if (subjectName == null)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("subjectName");
            }
            SetCertificate(storeLocation, storeName, DefaultFindType, subjectName);
        } 

        public void SetCertificate(StoreLocation storeLocation, StoreName storeName, X509FindType findType, object findValue) 
        { 
            if (findValue == null)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("findValue");
            }
            ThrowIfImmutable();
            this.certificate = SecurityUtils.GetCertificateFromStore(storeName, storeLocation, findType, findValue, null); 
        }
 
        internal void MakeReadOnly() 
        {
            this.isReadOnly = true; 
        }

        void ThrowIfImmutable()
        { 
            if (this.isReadOnly)
            { 
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new InvalidOperationException(SR.GetString(SR.ObjectIsReadOnly))); 
            }
        } 
    }
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK