Microsoft.ResourceManagement.ObjectModel.RmResourceChanges.Dispose C# (CSharp) Method

Dispose() public method

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
public Dispose ( ) : void
return void
        public void Dispose()
        {
            EnsureNotDisposed();
            lock (rmObject.attributes) {
                this.originalAttributes = null;
                GC.SuppressFinalize(this);
                this.rmObject = null;
            }
        }