RemoteX509Token.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 / infocard / Service / managed / Microsoft / InfoCards / RemoteX509Token.cs / 1 / RemoteX509Token.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------
namespace Microsoft.InfoCards
{ 
    using System;
    using System.Collections.Generic; 
    using System.Collections.ObjectModel; 
    using System.Security.Cryptography;
    using System.Security.Cryptography.X509Certificates; 
    using System.IdentityModel.Tokens;
    using System.ServiceModel;
    using System.ServiceModel.Security;
    using System.ServiceModel.Security.Tokens; 

 
    using IDT=Microsoft.InfoCards.Diagnostics.InfoCardTrace; 

    // 
    // Summary:
    //  Remotely host key set cert token
    //
    class RemoteX509Token : X509SecurityToken 
    {
        List m_keys; 
        object m_sync; 
        bool m_disposed;
 

        public RemoteX509Token(X509Certificate2 cert)
            : base( cert )
        { 
            m_keys = new List(1);
            m_keys .Add(new RemoteX509AsymmetricSecurityKey(cert)); 
            m_sync = new object(); 

        } 
        public override ReadOnlyCollection SecurityKeys
        {
            get { return m_keys.AsReadOnly(); }
        } 

 
        public override void Dispose() 
        {
            try 
            {
                if (m_disposed)
                {
                    return; 
                }
 
                lock (m_sync) 
                {
                    if (m_disposed) 
                    {
                        return;
                    }
 
                    m_disposed = true;
                    foreach (SecurityKey key in m_keys) 
                    { 
                        IDisposable disposable = key as IDisposable;
                        if (null != disposable) 
                        {
                            disposable.Dispose();
                        }
                    } 
                }
            } 
            finally 
            {
                base.Dispose(); 
            }
        }
    }
} 

// 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