22 references to OperationFlow
System.Web.Services (22)
System\Web\Services\Description\HttpProtocolImporter.cs (2)
295
protected override bool IsOperationFlowSupported(
OperationFlow
flow) {
296
return flow ==
OperationFlow
.RequestResponse;
System\Web\Services\Description\ProtocolImporter.cs (5)
395
case
OperationFlow
.SolicitResponse:
398
case
OperationFlow
.RequestResponse:
401
case
OperationFlow
.OneWay:
404
case
OperationFlow
.Notification:
584
protected abstract bool IsOperationFlowSupported(
OperationFlow
flow);
System\Web\Services\Description\ServiceDescription.cs (10)
1176
case
OperationFlow
.RequestResponse:
1180
case
OperationFlow
.OneWay:
1186
case
OperationFlow
.SolicitResponse:
1188
case
OperationFlow
.Notification:
1759
public
OperationFlow
Flow {
1762
return
OperationFlow
.None;
1766
return
OperationFlow
.OneWay;
1769
return
OperationFlow
.Notification;
1774
return
OperationFlow
.RequestResponse;
1777
return
OperationFlow
.SolicitResponse;
System\Web\Services\Description\SoapProtocolImporter.cs (3)
479
protected override bool IsOperationFlowSupported(
OperationFlow
flow) {
480
return flow ==
OperationFlow
.OneWay || flow ==
OperationFlow
.RequestResponse;
System\Web\Services\Description\WebServicesInteroperability.cs (2)
111
if (op.Messages.Flow ==
OperationFlow
.Notification)
113
if (op.Messages.Flow ==
OperationFlow
.SolicitResponse)