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