Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ObsoleteAttribute::IsError Property

 

Gets a Boolean value indicating whether the compiler will treat usage of the obsolete program element as an error.

Namespace:   System
Assembly:  mscorlib (in mscorlib.dll)

public:
property bool IsError {
	bool get();
}

Property Value

Type: System::Boolean

true if the obsolete element usage is considered an error; otherwise, false. The default is false.

The following example defines a class that contains two members marked as obsolete. The first, a property named OldProperty, produces a compiler warning if it is called. The second, a method named CallOldMethod, produces a compiler error. The example uses reflection to get information about the ObsoleteAttribute attributes applied to members of the type and displays the values of their Message and IsError properties.

No code example is currently available or this language may not be supported.

Universal Windows Platform
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Windows Phone
Available since 8.1
Return to top
Show:
© 2017 Microsoft