Merge pull request #3142 from henricm/fix-for-win-mono_string_to_utf8
[mono.git] / mcs / class / referencesource / System / net / System / Net / NetworkInformation / NetworkInterfaceComponent.cs
1
2 using System;
3
4 namespace System.Net.NetworkInformation
5 {
6     
7     /// Specified the list of Networking components that are supported on a Network Interface
8     public enum NetworkInterfaceComponent
9     {
10         /// Internet Protocol version 4 is supported.
11         IPv4,
12
13         /// Internet Protocol version 6 is supported.
14         IPv6
15     }
16   
17 }
18