39 references to GetValue
dotnet-svcutil-lib (39)
CommandLineParser.cs (1)
177
if (argSwitch.SwitchType != SwitchType.ValueList && options.
GetValue
<object>(argSwitch.Name) != null)
CommandProcessorOptions.cs (1)
25
public string UpdateServiceReferenceFolder { get { return
GetValue
<string>(UpdateServiceReferenceKey); } set { SetValue(UpdateServiceReferenceKey, value); } }
Shared\Options\ApplicationOptions.cs (4)
43
public ListValue<Uri> Inputs { get { return
GetValue
<ListValue<Uri>>(InputsKey); } }
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 (15)
33
public ListValue<string> CollectionTypes { get { return
GetValue
<ListValue<string>>(CollectionTypesKey); } }
34
public bool? EnableDataBinding { get { return
GetValue
<bool?>(EnableDataBindingKey); } set { SetValue(EnableDataBindingKey, value); } }
35
public ListValue<string> ExcludeTypes { get { return
GetValue
<ListValue<string>>(ExcludeTypesKey); } }
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); } }
38
public ListValue<KeyValuePair<string, string>> NamespaceMappings { get { return
GetValue
<ListValue<KeyValuePair<string, string>>>(NamespaceMappingsKey); } }
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); } }
41
public ListValue<ProjectDependency> References { get { return
GetValue
<ListValue<ProjectDependency>>(ReferencesKey); } }
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); } }
Shared\Options\WCFCSUpdateOptions.cs (4)
26
private ListValue<string> CollectionTypeReference { get { return
GetValue
<ListValue<string>>(CollectionTypeReferenceKey); } }
27
private ListValue<string> DictionaryCollectionTypeReference { get { return
GetValue
<ListValue<string>>(DictionaryCollectionTypeReferenceKey); } }
28
private bool? ReuseTypesinReferencedAssemblies { get { return
GetValue
<bool?>(ReuseTypesinReferencedAssembliesKey); } }
29
private bool? ReuseTypesinAllReferencedAssemblies { get { return
GetValue
<bool?>(ReuseTypesinAllReferencedAssembliesKey); } }