Implemented interface member:
20 references to Count
dotnet-svcutil-lib (20)
CommandProcessorOptions.cs (10)
145if (cmdOptions.Errors.Count() == 0 && cmdOptions.Inputs.Count == 1) 304if (this.Inputs.Count > 0) 600this.TypeReuseMode = this.References.Count == 0 ? Svcutil.TypeReuseMode.All : Svcutil.TypeReuseMode.Specified; 616using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.References)}, count: {this.References.Count}. Reference resolution enabled: {resolveReferences}").ConfigureAwait(false)) 629for (int idx = this.References.Count - 1; idx >= 0; idx--) 645using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.NamespaceMappings)}, count: {this.NamespaceMappings.Count}").ConfigureAwait(false)) 647if (this.NamespaceMappings.Count == 0) 723if (this.Inputs.Count == 0) 728using (var safeLogger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing inputs, count: {this.Inputs.Count} ...").ConfigureAwait(false)) 730for (int idx = 0; idx < this.Inputs.Count; idx++)
Shared\Options\ListValue.cs (4)
69int ICollection.Count { get { return this.Count; } } 96return this.Count - 1; 101Insert(this.Count, value); 102return this.Count - 1;
Shared\Options\ListValueOption.cs (1)
37public override bool HasValue { get { return this.InnerList.Count > 0; } }
Shared\Options\UpdateOptions.cs (2)
92for (int idx = 0; idx < this.Inputs.Count; idx++) 110for (int idx = 0; idx < this.Inputs.Count; idx++)
Shared\Options\WCFCSUpdateOptions.cs (2)
86if (this.CollectionTypeReference.Count > 0) 91if (this.DictionaryCollectionTypeReference.Count > 0)
Tool.cs (1)
204ServiceDescriptor serviceDescriptor = options.Inputs.Count == 1 ?