1 write to Operation
System.ServiceModel.Activities (1)
System\ServiceModel\Activities\OperationProperty.cs (1)
18
this.
Operation
= operation;
12 references to Operation
System.ServiceModel.Activities (12)
System\ServiceModel\Activities\WorkflowService.cs (12)
324
Fx.Assert(property.
Operation
!= null, "OperationProperty.Operation should not be null!");
328
errors.Add(new ValidationError(SR.OperationIsNotImplemented(property.
Operation
.Name, property.
Operation
.DeclaringContract.Name), true));
330
else if (!property.
Operation
.IsOneWay)
337
errors.Add(new ValidationError(SR.TwoWayIsImplementedAsOneWay(property.
Operation
.Name, property.
Operation
.DeclaringContract.Name), true, string.Empty, recv));
1074
Fx.Assert(property.
Operation
!= null, "OperationProperty.Operation should not be null!");
1075
ValidateContract(context, receiveActivity, property.
Operation
);
1259
if (!property.
Operation
.IsOneWay)
1262
Fx.Assert(property.
Operation
!= null, "OperationProperty.Operation should not be null!");
1263
ValidateContract(context, sendReplyActivity, property.
Operation
);
1267
Constraint.AddValidationError(context, new ValidationError(SR.OnewayContractIsImplementedAsTwoWay(property.
Operation
.Name, contractName)));