InternalExecute method

Future<void> InternalExecute()
Exectures the request.

Implementation

Future<void> InternalExecute() {
  throw NotImplementedException("InternalExecute");
//            return lockObject.synchronized(() async {
//                this.response = await this.ValidateAndEmitRequest(this.request);
//
//                this.InternalOnConnect();
//            });
//            lock (this.lockObject)
//            {
//                this.response = this.ValidateAndEmitRequest(out this.request);
//
//                this.InternalOnConnect();
//            }
}