Implemented interface member:
20 references to Count
dotnet-svcutil-lib (20)
CommandProcessorOptions.cs (10)
144if (cmdOptions.Errors.Count() == 0 && cmdOptions.Inputs.Count == 1) 303if (this.Inputs.Count > 0) 599this.TypeReuseMode = this.References.Count == 0 ? Svcutil.TypeReuseMode.All : Svcutil.TypeReuseMode.Specified; 615using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.References)}, count: {this.References.Count}. Reference resolution enabled: {resolveReferences}").ConfigureAwait(false)) 628for (int idx = this.References.Count - 1; idx >= 0; idx--) 644using (var logger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing {nameof(this.NamespaceMappings)}, count: {this.NamespaceMappings.Count}").ConfigureAwait(false)) 646if (this.NamespaceMappings.Count == 0) 710if (this.Inputs.Count == 0) 715using (var safeLogger = await SafeLogger.WriteStartOperationAsync(this.Logger, $"Processing inputs, count: {this.Inputs.Count} ...").ConfigureAwait(false)) 717for (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 ?