10 writes to Options
dotnet-svcutil-lib (10)
CodeDomFixup\WcfCodeGenerationExtension.cs (3)
83generator.Options &= ~ServiceContractGenerationOptions.AsynchronousMethods; 84generator.Options &= ~ServiceContractGenerationOptions.EventBasedAsynchronousMethods; 85generator.Options |= ServiceContractGenerationOptions.TaskBasedAsynchronousMethod;
ImportModule.cs (7)
230contractGenerator.Options |= ServiceContractGenerationOptions.AsynchronousMethods; 231contractGenerator.Options |= ServiceContractGenerationOptions.TaskBasedAsynchronousMethod; 235contractGenerator.Options |= ServiceContractGenerationOptions.InternalTypes; 239contractGenerator.Options &= ~ServiceContractGenerationOptions.InternalTypes; 244contractGenerator.Options |= ServiceContractGenerationOptions.TypedMessages; 248contractGenerator.Options &= ~ServiceContractGenerationOptions.TypedMessages; 253contractGenerator.Options &= ~ServiceContractGenerationOptions.ChannelInterface & ~ServiceContractGenerationOptions.ClientClass;
2 references to Options
dotnet-svcutil-lib (2)
CodeDomFixup\VisitorFixup.cs (2)
14ArrayOfXElementTypeHelper arrayOfXElementTypeHelper = new ArrayOfXElementTypeHelper((generator.Options & ServiceContractGenerationOptions.InternalTypes) == ServiceContractGenerationOptions.InternalTypes, generator.TargetCompileUnit); 27new CreateCallbackImpl((generator.Options & ServiceContractGenerationOptions.TaskBasedAsynchronousMethod) == ServiceContractGenerationOptions.TaskBasedAsynchronousMethod, generator),