DekGenius.com
[ Team LiB ] Previous Section Next Section

PlatformNotSupportedExceptionCF 1.0, serializable

System (mscorlib.dll)class

This exception signals an attempt to access a class or member that is not available on the current platform. For example, many properties from System.Diagnostics.Process are not available on Windows 95, 98, or ME.

public class PlatformNotSupportedException : NotSupportedException {
// Public Constructors
   public PlatformNotSupportedException( );
   public PlatformNotSupportedException(string message);
   public PlatformNotSupportedException(string message, Exception inner);
// Protected Constructors
   protected PlatformNotSupportedException(System.Runtime.Serialization.SerializationInfo info,
        System.Runtime.Serialization.StreamingContext context);
}

Hierarchy

Object Exception(System.Runtime.Serialization.ISerializable) SystemException NotSupportedException PlatformNotSupportedException

    [ Team LiB ] Previous Section Next Section