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