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.

AppDomainManager::CheckSecuritySettings Method (SecurityState^)

 

Indicates whether the specified operation is allowed in the application domain.

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

public:
virtual bool CheckSecuritySettings(
	SecurityState^ state
)

Parameters

state
Type: System.Security::SecurityState^

A subclass of SecurityState that identifies the operation whose security status is requested.

Return Value

Type: System::Boolean

true if the host allows the operation specified by state to be performed in the application domain; otherwise, false.

The default implementation of this method returns false.

This method is called when the IsolatedStorageFile::IncreaseQuotaTo method has been called to increase the isolated storage quota. An application that hosts the common language runtime (CLR) can override the CheckSecuritySettings method to perform policy decisions based on an IsolatedStorageSecurityState object (which inherits SecurityState), and can then allow or prevent the increase. For example, a host could prompt the end user to approve or deny the request to increase the quota. The host's implementation of CheckSecuritySettings should take into account the possibility of denial-of-service attacks. For example, it should prompt the user only if the method is called from a user-initiated event such as a button click.

.NET Framework
Available since 2.0
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft