Close method
void
Close()
Implementation
void Close() {
throw NotImplementedException("Close");
// lock (this.lockObject)
// {
// this.ThrowIfDisposed();
//
// this.ValidateConnectionState(true, "Strings.CannotCallDisconnectWithNoLiveConnection");
//
// // Further down in the stack, this will result in a call to our OnRequestDisconnect event handler,
// // doing the necessary cleanup.
// this.currentHangingRequest.Disconnect();
// }
}