• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lduchosal / ipnetwork / 960

15 May 2026 07:18AM UTC coverage: 0.0% (-94.1%) from 94.053%
960

Pull #411

appveyor

web-flow
Merge ef6b054ce into 4cec191ae
Pull Request #411: Bump MSTest.TestFramework from 4.2.2 to 4.2.3

0 of 2438 relevant lines covered (0.0%)

0.0 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/System.Net.IPNetwork/IPNetwork2UlaExtension.cs
1

2
// <copyright file="IPNetwork2Extensions.cs" company="IPNetwork">
3
// Copyright (c) IPNetwork. All rights reserved.
4
// </copyright>
5
namespace System.Net;
6

7
/// <summary>
8
/// Extension methods for IPNetwork2 to support ULA operations.
9
/// </summary>
10
public static class IPNetwork2UlaExtension
11
{
12
    /// <summary>
13
    /// Determines if this network is a Unique Local Address (ULA).
14
    /// </summary>
15
    /// <param name="network">The network to check.</param>
16
    /// <returns>True if the network is a ULA, false otherwise.</returns>
17
    public static bool IsUla(this IPNetwork2 network)
18
    {
×
19
        return UniqueLocalAddress.IsUlaPrefix(network);
×
20
    }
×
21

22
    /// <summary>
23
    /// Determines if this network is a locally assigned ULA (fd00::/8).
24
    /// </summary>
25
    /// <param name="network">The network to check.</param>
26
    /// <returns>True if the network is locally assigned ULA, false otherwise.</returns>
27
    public static bool IsLocallyAssignedUla(this IPNetwork2 network)
28
    {
×
29
        return UniqueLocalAddress.IsLocallyAssignedUla(network);
×
30
    }
×
31

32
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc