1 instantiation of ListValue
dotnet-svcutil-lib (1)
Shared\Options\ListValueOption.cs (1)
24
public ListValueOption(string name) : base(name, new
ListValue
<TValue>())
16 references to ListValue
dotnet-svcutil-lib (16)
Shared\Options\ApplicationOptions.cs (2)
43
public
ListValue
<Uri> Inputs { get { return GetValue<
ListValue
<Uri>>(InputsKey); } }
Shared\Options\ListValueOption.cs (2)
22
private
ListValue
<TValue> InnerList { get; }
26
this.InnerList = this.Value as
ListValue
<TValue>;
Shared\Options\UpdateOptions.cs (8)
33
public
ListValue
<string> CollectionTypes { get { return GetValue<
ListValue
<string>>(CollectionTypesKey); } }
35
public
ListValue
<string> ExcludeTypes { get { return GetValue<
ListValue
<string>>(ExcludeTypesKey); } }
38
public
ListValue
<KeyValuePair<string, string>> NamespaceMappings { get { return GetValue<
ListValue
<KeyValuePair<string, string>>>(NamespaceMappingsKey); } }
41
public
ListValue
<ProjectDependency> References { get { return GetValue<
ListValue
<ProjectDependency>>(ReferencesKey); } }
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); } }