8 references to IsSet
System.ServiceModel (8)
System\ServiceModel\Description\OperationGenerator.cs (1)
130this.MessageContractType = context.ServiceContractGenerator.OptionsInternal.IsSet(ServiceContractGenerationOptions.TypedMessages) ? MessageContractType.WrappedMessageContract : MessageContractType.None;
System\ServiceModel\Description\ServiceContractGenerator.cs (7)
186context = new ContextInitializer(this, new CodeTypeFactory(this, options.IsSet(ServiceContractGenerationOptions.InternalTypes))).CreateContext(contractDescription); 214if (this.options.IsSet(ServiceContractGenerationOptions.ChannelInterface)) 219if (this.options.IsSet(ServiceContractGenerationOptions.ClientClass)) 222bool tryAddHelperMethod = !this.options.IsSet(ServiceContractGenerationOptions.TypedMessages); 223bool generateEventAsyncMethods = this.options.IsSet(ServiceContractGenerationOptions.EventBasedAsynchronousMethods); 264this.asyncMethods = parent.OptionsInternal.IsSet(ServiceContractGenerationOptions.AsynchronousMethods); 265this.taskMethod = parent.OptionsInternal.IsSet(ServiceContractGenerationOptions.TaskBasedAsynchronousMethod);