DbCommand.Dispose Metodo
Definizione
Overload
Dispose() |
Esegue attività definite dall'applicazione, come rilasciare o reimpostare risorse non gestite.Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. |
Dispose(Boolean) |
Rilascia le risorse non gestite usate da DbCommand e, facoltativamente, le risorse gestite.Releases the unmanaged resources used by the DbCommand and optionally releases the managed resources. |
Dispose()
Esegue attività definite dall'applicazione, come rilasciare o reimpostare risorse non gestite.Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public:
virtual void Dispose();
public void Dispose ();
abstract member Dispose : unit -> unit
override this.Dispose : unit -> unit
Public Sub Dispose ()
Implementazioni
Si applica a
Dispose(Boolean)
protected:
virtual void Dispose(bool disposing);
protected virtual void Dispose (bool disposing);
abstract member Dispose : bool -> unit
override this.Dispose : bool -> unit
Protected Overridable Sub Dispose (disposing As Boolean)
Parametri
- disposing
- Boolean
true
per rilasciare sia le risorse gestite sia quelle non gestite; false
per rilasciare solo le risorse non gestite.true
to release both managed and unmanaged resources; false
to release only unmanaged resources.