Exemple #1
0
            public BinarySecretClauseEntry(WSTrust parent)
            {
                this.parent = parent;

                this.otherDictionary = null;

                if (parent.SerializerDictionary is TrustDec2005Dictionary)
                {
                    this.otherDictionary = parent.securityTokenSerializer.DictionaryManager.TrustFeb2005Dictionary;
                }

                if (parent.SerializerDictionary is TrustFeb2005Dictionary)
                {
                    this.otherDictionary = parent.securityTokenSerializer.DictionaryManager.TrustDec2005Dictionary;
                }

                // always set it, so we don't have to worry about null
                if (this.otherDictionary == null)
                {
                    this.otherDictionary = this.parent.SerializerDictionary;
                }
            }
Exemple #2
0
 public BinarySecretTokenEntry(WSTrust parent)
 {
     this.parent = parent;
 }
Exemple #3
0
 public GenericXmlSecurityKeyIdentifierClauseEntry(WSTrust parent)
 {
     this.parent = parent;
 }