HostSecurityManager::ProvideAssemblyEvidence Method (Assembly^, Evidence^)
Provides the assembly evidence for an assembly being loaded.
Assembly: mscorlib (in mscorlib.dll)
public: virtual Evidence^ ProvideAssemblyEvidence( Assembly^ loadedAssembly, Evidence^ inputEvidence )
Parameters
- loadedAssembly
-
Type:
System.Reflection::Assembly^
The loaded assembly.
- inputEvidence
-
Type:
System.Security.Policy::Evidence^
Additional evidence to add to the assembly evidence.
This method can be overridden in a derived class.
This method is called whenever an assembly is loaded, either implicitly or explicitly. The passed in parameters are the assembly being loaded, and the computed evidence from the common language runtime. The host implementation can choose to extend or reduce the evidence. The return value is the evidence to be used for the assembly. The base implementation always returns the evidence object passed in as the inputEvidence parameter.
Important |
|---|
See the Notes to Inheritors for the HostSecurityManager class for critical implementation information. |
The following example shows how to override the ProvideAssemblyEvidence method for a custom host security manager. This example is part of a larger example provided for the HostSecurityManager class.
Available since 2.0
