C# Class RemoteClient.Roslyn.DisposableBase

DisposableBase class. Represents an implementation of the IDisposable interface.
Inheritance: IDisposable
Afficher le fichier Open project: Pzixel/RemoteClient.Roslyn

Méthodes publiques

Méthode Description
Dispose ( ) : void

Performs application-defined tasks associated with disposing of resources.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Dispose resources. Override this method in derived classes. Unmanaged resources should always be released when this method is called. Managed resources may only be disposed of if disposing is true.

Method Details

Dispose() public méthode

Performs application-defined tasks associated with disposing of resources.
public Dispose ( ) : void
Résultat void

Dispose() protected abstract méthode

Dispose resources. Override this method in derived classes. Unmanaged resources should always be released when this method is called. Managed resources may only be disposed of if disposing is true.
protected abstract Dispose ( bool disposing ) : void
disposing bool A value which indicates whether managed resources may be disposed of.
Résultat void