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.

SecurityException::FailedAssemblyInfo Property

 

Gets or sets information about the failed assembly.

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

public:
[ComVisibleAttribute(false)]
property AssemblyName^ FailedAssemblyInfo {
	[SecurityPermissionAttribute(SecurityAction::Demand, Flags = SecurityPermissionFlag::NoFlags | SecurityPermissionFlag::ControlEvidence | SecurityPermissionFlag::ControlPolicy)]
	AssemblyName^ get();
	void set(AssemblyName^ value);
}

Property Value

Type: System.Reflection::AssemblyName^

An AssemblyName that identifies the failed assembly.

This property contains an AssemblyName object that identifies the assembly that caused the security check to fail.

System_CAPS_noteNote

This property is not populated when a security exception occurs in a Deny or PermitOnly stack frame, because the assembly issuing the Deny or PermitOnly security action is not the assembly that failed the stack walk. In these cases, the security exception is created with a constructor that does not require an assembly name, granted set information, or refused set information.

The following code example shows the use of the FailedAssemblyInfo property to display the information about the failed assembly.

Display("The failed assembly is: {0}",
    exception->FailedAssemblyInfo->EscapedCodeBase);

SecurityPermission

for the ability to provide evidence and view and modify policy. Associated enumerations: SecurityPermissionFlag::ControlEvidence, SecurityPermissionFlag::ControlPolicy Security action: Demand

.NET Framework
Available since 2.0
Return to top
Show:
© 2017 Microsoft