5 writes to arguments
System.Activities (5)
System\Activities\Tracking\ActivityStateRecord.cs (5)
98
this.
arguments
= ActivityUtilities.EmptyParameters;
102
this.
arguments
= new Dictionary<string, object>(record.arguments);
157
this.
arguments
= GetArguments(wildcardCollection);
166
this.
arguments
= value;
181
set { this.
arguments
= value; }
7 references to arguments
System.Activities (7)
System\Activities\Tracking\ActivityStateRecord.cs (7)
94
if (record.
arguments
!= null)
96
if (record.
arguments
== ActivityUtilities.EmptyParameters)
102
this.arguments = new Dictionary<string, object>(record.
arguments
);
155
if (this.
arguments
== null)
158
Fx.Assert(this.
arguments
.IsReadOnly, "only readonly dictionary can be set for arguments");
160
return this.
arguments
;
180
get { return this.
arguments
; }