The exception that is thrown when an invoked method is not supported, or when there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
<SerializableAttribute> _ <ComVisibleAttribute(True)> _ Public Class NotSupportedException _ Inherits SystemException
[SerializableAttribute] [ComVisibleAttribute(true)] public class NotSupportedException : SystemException
[SerializableAttribute] [ComVisibleAttribute(true)] public ref class NotSupportedException : public SystemException
[<SerializableAttribute>] [<ComVisibleAttribute(true)>] type NotSupportedException = class inherit SystemException end
The NotSupportedException type exposes the following members.
There are methods that are not supported in the base class, with the expectation that these methods will be implemented in the derived classes instead. The derived class might implement only a subset of the methods from the base class, and throw NotSupportedException for the unsupported methods.
NotSupportedException is also thrown by System.IO classes whenever there is an attempt to read, seek, or write to a stream that does not support the invoked functionality.
For scenarios where it is sometimes possible for the object to perform the requested operation, and the object state determines whether the operation can be performed, see InvalidOperationException.
NotSupportedException uses the HRESULT COR_E_NOTSUPPORTED, which has the value 0x80131515.
For a list of initial property values for an instance of NotSupportedException, see the NotSupportedException constructors.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2