5 writes to IsDirty
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (5)
823this.IsDirty = true; 938this.IsDirty = false; 4469IsDirty = false; 4710IsDirty = true; // mark command as dirty so it will be prepared next time we're comming through 4762IsDirty = true; // mark command as dirty so it will be prepared next time we're comming through
8 references to IsDirty
System.Data (8)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (8)
847this.IsPrepared && !this.IsDirty 932if (this.IsDirty) { 1642if (!this.IsDirty && this.IsPrepared) { 4143if ((!this.IsDirty && this.IsPrepared && !_hiddenPrepare) 4428Debug.Assert(!IsDirty, "Batch RPC should not be marked as dirty!"); 4459if (this.IsDirty) { 4507Debug.Assert(IsShiloh || !IsDirty, "RPC should not be marked as dirty!"); 6014get { return IsPrepared && !_hiddenPrepare && !IsDirty; }