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