MsmqTransportSecurity.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 / MsmqTransportSecurity.cs / 1 / MsmqTransportSecurity.cs

                            //------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------
namespace System.ServiceModel
{ 
    using System;
    using System.ServiceModel.Channels; 
    using System.ServiceModel.Security; 
    using System.Net;
    using System.Net.Security; 

    public sealed class MsmqTransportSecurity
    {
        MsmqAuthenticationMode msmqAuthenticationMode; 
        MsmqEncryptionAlgorithm msmqEncryptionAlgorithm;
        MsmqSecureHashAlgorithm msmqHashAlgorithm; 
        ProtectionLevel msmqProtectionLevel; 

        public MsmqTransportSecurity() 
        {
            this.msmqAuthenticationMode = MsmqDefaults.MsmqAuthenticationMode;
            this.msmqEncryptionAlgorithm = MsmqDefaults.MsmqEncryptionAlgorithm;
            this.msmqHashAlgorithm = MsmqDefaults.MsmqSecureHashAlgorithm; 
            this.msmqProtectionLevel = MsmqDefaults.MsmqProtectionLevel;
        } 
 
        public MsmqTransportSecurity(MsmqTransportSecurity other)
        { 
            if (null == other)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull("other");
            this.msmqAuthenticationMode = other.MsmqAuthenticationMode;
            this.msmqEncryptionAlgorithm = other.MsmqEncryptionAlgorithm; 
            this.msmqHashAlgorithm = other.MsmqSecureHashAlgorithm;
            this.msmqProtectionLevel = other.MsmqProtectionLevel; 
        } 

        internal bool Enabled 
        {
            get
            {
                return this.msmqAuthenticationMode != MsmqAuthenticationMode.None && this.msmqProtectionLevel != ProtectionLevel.None; 
            }
        } 
 
        public MsmqAuthenticationMode MsmqAuthenticationMode
        { 
            get { return this.msmqAuthenticationMode; }
            set
            {
                if (! MsmqAuthenticationModeHelper.IsDefined(value)) 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
                this.msmqAuthenticationMode = value; 
            } 
        }
 
        public MsmqEncryptionAlgorithm MsmqEncryptionAlgorithm
        {
            get { return this.msmqEncryptionAlgorithm; }
            set 
            {
                if (! MsmqEncryptionAlgorithmHelper.IsDefined(value)) 
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value")); 
                this.msmqEncryptionAlgorithm = value;
            } 
        }

        public MsmqSecureHashAlgorithm MsmqSecureHashAlgorithm
        { 
            get { return this.msmqHashAlgorithm; }
            set 
            { 
                if (! MsmqSecureHashAlgorithmHelper.IsDefined(value))
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value")); 
                this.msmqHashAlgorithm = value;
            }
        }
 
        public ProtectionLevel MsmqProtectionLevel
        { 
            get { return this.msmqProtectionLevel; } 
            set
            { 
                if (! ProtectionLevelHelper.IsDefined(value))
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("value"));
                this.msmqProtectionLevel = value;
            } 
        }
 
        internal void Disable() 
        {
            this.msmqAuthenticationMode = MsmqAuthenticationMode.None; 
            this.msmqProtectionLevel = ProtectionLevel.None;
        }
    }
} 

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