1 write to InnerList
dotnet-svcutil-lib (1)
Shared\Options\ListValueOption.cs (1)
26this.InnerList = this.Value as ListValue<TValue>;
11 references to InnerList
dotnet-svcutil-lib (11)
Shared\Options\ListValueOption.cs (11)
27this.InnerList.Owner = this; 31this.InnerList.Inserting += this.InnerList_Inserting; 32this.InnerList.Inserted += this.InnerList_Inserted; 33this.InnerList.Removing += this.InnerList_Removing; 34this.InnerList.Removed += this.InnerList_Removed; 37public override bool HasValue { get { return this.InnerList.Count > 0; } } 74this.InnerList.Clear(); 80this.InnerList.AddRange(list); 84this.InnerList.Add(OptionValueParser.ParseValue<TValue>(value, this)); 127this.InnerList.Add(OptionValueParser.ParseValue<TValue>(item, this)); 131return this.InnerList;