Merge pull request #3028 from lateralusX/jlorenss/threadpool_warning
[mono.git] / mcs / class / System / System.Net.NetworkInformation / IPv6InterfaceProperties.cs
index 7acbbdca4c3a0e39cfe3549fec5221acbdb707e8..d7a3dcfe20ac6e17c22a39ce98255886d52774e8 100644 (file)
 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 //
-#if NET_2_0
 namespace System.Net.NetworkInformation {
-       public abstract class IPv6InterfaceProperties {
-               protected IPv6InterfaceProperties ()
-               {
-               }
-
-               public abstract int Index { get; }
-               public abstract int Mtu { get; }
-       }
-
+#if !MOBILE
        class Win32IPv6InterfaceProperties : IPv6InterfaceProperties
        {
                Win32_MIB_IFROW mib;
@@ -54,6 +45,6 @@ namespace System.Net.NetworkInformation {
                        get { return mib.Mtu; }
                }
        }
-}
 #endif
+}