ObsoletedOSPlatformAttribute Constructors

Definition

Overloads

ObsoletedOSPlatformAttribute(String)

Initializes a new instance of the ObsoletedOSPlatformAttribute class for the specified obsoleted OS platform.

ObsoletedOSPlatformAttribute(String, String)

Initializes a new instance of the ObsoletedOSPlatformAttribute attribute class for the specified obsoleted OS platform with an additional message.

ObsoletedOSPlatformAttribute(String)

Source:
PlatformAttributes.cs
Source:
PlatformAttributes.cs
Source:
PlatformAttributes.cs

Initializes a new instance of the ObsoletedOSPlatformAttribute class for the specified obsoleted OS platform.

public:
 ObsoletedOSPlatformAttribute(System::String ^ platformName);
public ObsoletedOSPlatformAttribute (string platformName);
new System.Runtime.Versioning.ObsoletedOSPlatformAttribute : string -> System.Runtime.Versioning.ObsoletedOSPlatformAttribute
Public Sub New (platformName As String)

Parameters

platformName
String

The obsoleted OS platform name, optionally including a version.

Applies to

ObsoletedOSPlatformAttribute(String, String)

Source:
PlatformAttributes.cs
Source:
PlatformAttributes.cs
Source:
PlatformAttributes.cs

Initializes a new instance of the ObsoletedOSPlatformAttribute attribute class for the specified obsoleted OS platform with an additional message.

public:
 ObsoletedOSPlatformAttribute(System::String ^ platformName, System::String ^ message);
public ObsoletedOSPlatformAttribute (string platformName, string? message);
new System.Runtime.Versioning.ObsoletedOSPlatformAttribute : string * string -> System.Runtime.Versioning.ObsoletedOSPlatformAttribute
Public Sub New (platformName As String, message As String)

Parameters

platformName
String

The obsoleted OS platform name, optionally including a version.

message
String

Additional information about the obsoletion, for example, a suggested alternative for the obsoleted API.

Applies to