HostProtectionAttribute.SelfAffectingProcessMgmt Property

Definition

Gets or sets a value indicating whether self-affecting process management is exposed.

C#
public bool SelfAffectingProcessMgmt { get; set; }

Property Value

true if self-affecting process management is exposed; otherwise, false. The default is false.

Examples

The following code example illustrates the use of the HostProtectionAttribute attribute with the SelfAffectingProcessMgmt property. This example is part of a larger example provided for the HostProtectionAttribute class.

C#
// Use the enumeration flags to indicate that this method exposes 
// shared state and self-affecting process management.
// Either of the following attribute statements can be used to set the
// resource flags.
[HostProtectionAttribute(SharedState = true, 
    SelfAffectingProcessMgmt = true)]
[HostProtectionAttribute(Resources = HostProtectionResource.SharedState |
     HostProtectionResource.SelfAffectingProcessMgmt)]
private static void Exit(string Message, int Code)
{
    // Exit the sample when an exception is thrown.
    Console.WriteLine("\nFAILED: " + Message + " " + Code.ToString());
    Environment.ExitCode = Code;
    Environment.Exit(Code);
}

Remarks

Self-affecting process management code might exit the current process, terminating the server.

Applies to

Product Versions
.NET 8 (package-provided), 9 (package-provided), 10 (package-provided)
.NET Framework 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 2.0 (package-provided)
Windows Desktop 3.0, 3.1, 5, 6, 7, 8, 9, 10

See also