Beispiel #1
0
 public override void When()
 {
     try
     {
         Result = new SoapQueryParser().Read(PollStream, default).Result;
     }
     catch (Exception ex)
     {
         Catched = ex?.InnerException ?? ex;
     }
 }
Beispiel #2
0
        public async Task <IQueryRequest> ParseQuery(Stream input, CancellationToken cancellationToken)
        {
            var queryParser = new SoapQueryParser();

            return(await queryParser.Read(input, cancellationToken));
        }