< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Configuration.StandardBindingCollectionElement<T1, T2>
Assembly: CoreWCF.ConfigurationManager
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.ConfigurationManager/src/CoreWCF/Configuration/StandardBindingCollectionElement.cs
Line coverage
100%
Covered lines: 1
Uncovered lines: 0
Coverable lines: 1
Total lines: 20
Line coverage: 100%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

/home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.ConfigurationManager/src/CoreWCF/Configuration/StandardBindingCollectionElement.cs

#LineLine coverage
 1// Licensed to the .NET Foundation under one or more agreements.
 2// The .NET Foundation licenses this file to you under the MIT license.
 3
 4using System.Configuration;
 5using CoreWCF.Channels;
 6
 7namespace CoreWCF.Configuration
 8{
 9    public class StandardBindingCollectionElement<TStandardBinding, TBindingConfiguration> : BindingCollectionElement
 10        where TStandardBinding : Binding
 11        where TBindingConfiguration : ConfigurationElement, IDefaultCommunicationTimeouts, IStandardBindingElement, new(
 12    {
 13
 14        [ConfigurationProperty(ConfigurationStrings.DefaultCollectionName, Options = ConfigurationPropertyOptions.IsDefa
 15        public StandardBindingElementCollection<TBindingConfiguration> Bindings
 16        {
 24517            get { return (StandardBindingElementCollection<TBindingConfiguration>)base[ConfigurationStrings.DefaultColle
 18        }
 19    }
 20}

Methods/Properties

Bindings()