This documentation is archived and is not being maintained.
HostProtectionAttribute::Resources Property
Visual Studio 2010
Gets or sets flags specifying categories of functionality that are potentially harmful to the host.
Assembly: mscorlib (in mscorlib.dll)
public: property HostProtectionResource Resources { HostProtectionResource get (); void set (HostProtectionResource value); }
Property Value
Type: System.Security.Permissions::HostProtectionResourceA bitwise combination of the HostProtectionResource values. The default is None.
The HostProtectionResource flags specify the resources exposed by the method or class that are potentially harmful to the host.
The following code example illustrates the use of the HostProtectionAttribute attribute with the Resources property. This example is part of a larger example provided for the HostProtectionAttribute class.
// 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. // Exit the sample when an exception is thrown. [HostProtection(SharedState=true,SelfAffectingProcessMgmt=true)] [HostProtection(Resources=HostProtectionResource::SharedState| HostProtectionResource::SelfAffectingProcessMgmt)] static void Exit( String^ Message, int Code ) { Console::WriteLine( "\nFAILED: {0} {1}", Message, Code ); Environment::ExitCode = Code; Environment::Exit( Code ); }
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
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Show: