12 references to IsPrepared
System.Data (12)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (12)
470if (IsPrepared) { 847this.IsPrepared && !this.IsDirty 965Debug.Assert(true == IsPrepared, "Invalid attempt to Unprepare a non-prepared command!"); 1642if (!this.IsDirty && this.IsPrepared) { 4143if ((!this.IsDirty && this.IsPrepared && !_hiddenPrepare) 4144|| (this.IsPrepared && _execType == EXECTYPE.PREPAREPENDING)) 4427Debug.Assert(!IsPrepared, "Batch RPC should not be prepared!"); 4473Debug.Assert(this.IsPrepared && (_prepareHandle != -1), "invalid attempt to call sp_execute without a handle!"); 4506Debug.Assert(IsShiloh || !IsPrepared, "RPC should not be prepared!"); 6014get { return IsPrepared && !_hiddenPrepare && !IsDirty; } 6021return (IsPrepared && 6029_dirty = value ? IsPrepared : false;