1 write to dictionaryStrings
System.ServiceModel (1)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (1)
575this.dictionaryStrings = dictionaryStrings;
10 references to dictionaryStrings
System.ServiceModel (10)
System\ServiceModel\Security\WSSecurityTokenSerializer.cs (10)
583for (int i = 0; i < this.dictionaryStrings.Count; ++i) 585if (this.dictionaryStrings[i].Value.Equals(value)) 587result = this.dictionaryStrings[i]; 597for (int i = 0; i < this.dictionaryStrings.Count; ++i) 599if (this.dictionaryStrings[i].Key == key) 601result = this.dictionaryStrings[i]; 614for (int i = 0; i < this.dictionaryStrings.Count; ++i) 616if ((this.dictionaryStrings[i].Key == value.Key) && 617(this.dictionaryStrings[i].Value.Equals(value.Value))) 619result = this.dictionaryStrings[i];