InternalExecute method
Implementation
Future<void> InternalExecute() {
return _lockObject.synchronized(() async {
final requestOut = OutParam<IEwsHttpWebRequest>();
this._response = await this.ValidateAndEmitRequest(requestOut);
this._request = requestOut.param;
this._InternalOnConnect();
});
// lock (this.lockObject)
// {
// this.response = this.ValidateAndEmitRequest(out this.request);
//
// this.InternalOnConnect();
// }
}