1 write to always
System.ServiceModel (1)
System\ServiceModel\Dispatcher\ActionMessageFilterTable.cs (1)
30this.always = new List<MessageFilter>();
13 references to always
System.ServiceModel (13)
System\ServiceModel\Dispatcher\ActionMessageFilterTable.cs (13)
117this.always.Add(filter); 152this.always.Clear(); 191if (this.always.Count + filters.Count > 1) 194tmp.AddRange(this.always); 201if (this.always.Count > 1) 203Collection<MessageFilter> matches = new Collection<MessageFilter>(new List<MessageFilter>(this.always)); 206else if (this.always.Count == 1) 208return this.always[0]; 216for (int i = 0; i < this.always.Count; ++i) 218results.Add(this.always[i]); 239for (int i = 0; i < this.always.Count; ++i) 241results.Add(this.filters[this.always[i]]); 432this.always.Remove(filter);