| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- //------------------------------------------------------------
- // 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;
- }
- }
- }
- }
- }
|