File: net\System\Net\NetworkInformation\nodetype.cs
Project: ndp\fx\src\System.csproj (System)

using System;
 
namespace System.Net.NetworkInformation
{
    /// Specifies the Network Basic Input/Output System (NetBIOS) node type.
    public enum NetBiosNodeType
    {
        Unknown=0,
        Broadcast=1,
        Peer2Peer=2,
        Mixed=4,
        Hybrid=8
    }
 }