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