< Summary - CoreWCF Coverage — PR #1766

Information
Class: CoreWCF.Configuration.ServiceEndpointConfiguration
Assembly: CoreWCF.Primitives
File(s): /home/runner/work/CoreWCF/CoreWCF/src/CoreWCF.Primitives/src/CoreWCF/Configuration/ServiceEndpointConfiguration.cs
Line coverage
100%
Covered lines: 5
Uncovered lines: 0
Coverable lines: 5
Total lines: 18
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.Primitives/src/CoreWCF/Configuration/ServiceEndpointConfiguration.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;
 5using CoreWCF.Channels;
 6using CoreWCF.Description;
 7
 8namespace CoreWCF.Configuration
 9{
 10    internal class ServiceEndpointConfiguration
 11    {
 129412        public Uri Address { get; set; }
 252713        public Binding Binding { get; set; }
 193514        public Type Contract { get; set; }
 65315        public Uri ListenUri { get; set; }
 133116        public Action<ServiceEndpoint> ConfigureEndpoint { get; set; }
 17    }
 18}