1 write to actionParts
System.ServiceModel (1)
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (1)
24this.actionParts = new Dictionary<string, MessagePartSpecification>();
17 references to actionParts
System.ServiceModel (17)
System\ServiceModel\Security\ScopedMessagePartSpecification.cs (17)
31return this.actionParts.Keys; 58if (other.actionParts != null) 60foreach (string action in other.actionParts.Keys) 63p.Union(other.actionParts[action]); 64this.actionParts[action] = p; 73foreach (string action in this.actionParts.Keys) 74this.actionParts[action].IsBodyIncluded = newIncludeBody; 96if (!this.actionParts.ContainsKey(action)) 97this.actionParts[action] = new MessagePartSpecification(); 98this.actionParts[action].Union(parts); 145parts = this.actionParts[action]; 149else if (this.actionParts.ContainsKey(action)) 152p.Union(this.actionParts[action]); 175foreach (string action in this.actionParts.Keys) 177target.AddParts(this.actionParts[action], action); 191foreach (string action in this.actionParts.Keys) 194p.Union(this.actionParts[action]);