Open method
void
Open()
Implementation
void Open() {
throw NotImplementedException("Open");
// lock (this.lockObject)
// {
// this.ThrowIfDisposed();
//
// this.ValidateConnectionState(false, "Strings.CannotCallConnectDuringLiveConnection");
//
// if (this.subscriptions.length == 0)
// {
// throw new ServiceLocalException("Strings.NoSubscriptionsOnConnection");
// }
//
// this.currentHangingRequest = new GetStreamingEventsRequest(
// this.session,
// this.HandleServiceResponseObject,
// this.subscriptions.Keys,
// this.connectionTimeout);
//
// this.currentHangingRequest.OnDisconnect += new HangingServiceRequestBase.HangingRequestDisconnectHandler(this.OnRequestDisconnect);
//
// this.currentHangingRequest.InternalExecute();
// }
}