HostProtectionAttribute.Resources Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.0.
Gets or sets flags specifying categories of functionality that are potentially harmful to the host.
Namespace: System.Security.Permissions
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
public: property HostProtectionResource Resources { HostProtectionResource get (); void set (HostProtectionResource value); }
/** @property */ public HostProtectionResource get_Resources () /** @property */ public void set_Resources (HostProtectionResource value)
public function get Resources () : HostProtectionResource public function set Resources (value : HostProtectionResource)
Property Value
A bitwise combination of the HostProtectionResource values. The default is None.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 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Community Additions
ADD
Show: