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

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

using System; 
using System.Collections.Generic;
using System.Text; 
using System.Xml; 

namespace System.ServiceModel.Security 
{
    public abstract class TrustVersion
    {
        readonly XmlDictionaryString trustNamespace; 
        readonly XmlDictionaryString prefix;
 
        internal TrustVersion(XmlDictionaryString ns, XmlDictionaryString prefix) 
        {
            this.trustNamespace = ns; 
            this.prefix = prefix;
        }

        public XmlDictionaryString Namespace 
        {
            get 
            { 
                return this.trustNamespace;
            } 
        }

        public XmlDictionaryString Prefix
        { 
            get
            { 
                return this.prefix; 
            }
        } 

        public static TrustVersion Default
        {
            get { return WSTrustFeb2005; } 
        }
 
        public static TrustVersion WSTrustFeb2005 
        {
            get { return WSTrustVersionFeb2005.Instance; } 
        }

        public static TrustVersion WSTrust13
        { 
            get { return WSTrustVersion13.Instance; }
        } 
 
        class WSTrustVersionFeb2005 : TrustVersion
        { 
            static readonly WSTrustVersionFeb2005 instance = new WSTrustVersionFeb2005();

            protected WSTrustVersionFeb2005()
                : base(XD.TrustFeb2005Dictionary.Namespace, XD.TrustFeb2005Dictionary.Prefix) 
            {
            } 
 
            public static TrustVersion Instance
            { 
                get
                {
                    return instance;
                } 
            }
        } 
 
        class WSTrustVersion13 : TrustVersion
        { 
            static readonly WSTrustVersion13 instance = new WSTrustVersion13();

            protected WSTrustVersion13()
                : base(DXD.TrustDec2005Dictionary.Namespace, DXD.TrustDec2005Dictionary.Prefix) 
            {
            } 
 
            public static TrustVersion Instance
            { 
                get
                {
                    return instance;
                } 
            }
        } 
 
    }
} 

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