31 references to SetValue
dotnet-svcutil-lib (31)
CommandLineParser.cs (1)
197
options.
SetValue
(optionName, value);
CommandProcessorOptions.cs (2)
25
public string UpdateServiceReferenceFolder { get { return GetValue<string>(UpdateServiceReferenceKey); } set {
SetValue
(UpdateServiceReferenceKey, value); } }
36
set {
SetValue
(TypeReuseModeKey, ParseNoTypeReuseOptionValue(value)); }
Shared\Options\ApplicationOptions.cs (3)
44
private string Options { get { return GetValue<string>(OptionsKey); } set {
SetValue
(OptionsKey, value); } }
45
public string ProviderId { get { return GetValue<string>(ProviderIdKey); } set {
SetValue
(ProviderIdKey, value); } }
46
public string Version { get { return GetValue<string>(VersionKey); } set {
SetValue
(VersionKey, value); } }
Shared\Options\SvcutilOptions.cs (14)
31
public DirectoryInfo BootstrapPath { get { return GetValue<DirectoryInfo>(BootstrapPathKey); } set {
SetValue
(BootstrapPathKey, value); } }
32
public CultureInfo CultureInfo { get { return GetValue<CultureInfo>(CultureInfoKey); } set {
SetValue
(CultureInfoKey, value); } }
33
public bool? EnableLoggingMarkup { get { return GetValue<bool?>(EnableLoggingMarkupKey); } set {
SetValue
(EnableLoggingMarkupKey, value); } }
34
public bool? Help { get { return GetValue<bool>(HelpKey); } set {
SetValue
(HelpKey, value); } }
35
public bool? NoBootstrapping { get { return GetValue<bool?>(NoBootstrappingKey); } set {
SetValue
(NoBootstrappingKey, value); } }
36
public bool? NoLogo { get { return GetValue<bool?>(NoLogoKey); } set {
SetValue
(NoLogoKey, value); } }
37
public bool? NoProjectUpdates { get { return GetValue<bool?>(NoProjectUpdatesKey); } set {
SetValue
(NoProjectUpdatesKey, value); } }
38
public bool? NoTelemetry { get { return GetValue<bool?>(NoTelemetryKey); } set {
SetValue
(NoTelemetryKey, value); } }
39
public DirectoryInfo OutputDir { get { return GetValue<DirectoryInfo>(OutputDirKey); } set {
SetValue
(OutputDirKey, value); } }
40
public MSBuildProj Project { get { return GetValue<MSBuildProj>(ProjectFileKey); } set {
SetValue
(ProjectFileKey, value); } }
41
public OperationalContext? ToolContext { get { return GetValue<OperationalContext?>(ToolContextKey); } set {
SetValue
(ToolContextKey, value); } }
42
public Verbosity? Verbosity { get { return GetValue<Verbosity?>(VerbosityKey); } set {
SetValue
(VerbosityKey, value); } }
43
public bool? AcceptCert { get { return GetValue<bool?>(AccecptCertificateKey); } set {
SetValue
(AccecptCertificateKey, value); } }
44
public bool? ServiceContract { get { return GetValue<bool?>(ServiceContractKey); } set {
SetValue
(ServiceContractKey, value); } }
Shared\Options\UpdateOptions.cs (11)
34
public bool? EnableDataBinding { get { return GetValue<bool?>(EnableDataBindingKey); } set {
SetValue
(EnableDataBindingKey, value); } }
36
public bool? InternalTypeAccess { get { return GetValue<bool?>(InternalTypeAccessKey); } set {
SetValue
(InternalTypeAccessKey, value); } }
37
public bool? MessageContract { get { return GetValue<bool?>(MessageContractKey); } set {
SetValue
(MessageContractKey, value); } }
39
public bool? NoStandardLibrary { get { return GetValue<bool?>(NoStandardLibraryKey); } set {
SetValue
(NoStandardLibraryKey, value); } }
40
public FileInfo OutputFile { get { return GetValue<FileInfo>(OutputFileKey); } set {
SetValue
(OutputFileKey, value); } }
42
public string RuntimeIdentifier { get { return GetValue<string>(RuntimeIdentifierKey); } set {
SetValue
(RuntimeIdentifierKey, value); } }
43
public SerializerMode? SerializerMode { get { return GetValue<SerializerMode?>(SerializerModeKey); } set {
SetValue
(SerializerModeKey, value); } }
44
public bool? Sync { get { return GetValue<bool?>(SyncKey); } set {
SetValue
(SyncKey, value); } }
45
public FrameworkInfo TargetFramework { get { return GetValue<FrameworkInfo>(TargetFrameworkKey); } set {
SetValue
(TargetFrameworkKey, value); } }
46
public TypeReuseMode? TypeReuseMode { get { return GetValue<TypeReuseMode?>(TypeReuseModeKey); } set {
SetValue
(TypeReuseModeKey, value); } }
47
public bool? Wrapped { get { return GetValue<bool?>(WrappedKey); } set {
SetValue
(WrappedKey, value); } }