EvidenceBase Class
Provides a base class from which all objects to be used as evidence must derive.
Assembly: mscorlib (in mscorlib.dll)
System.Security.Policy::EvidenceBase
System.Runtime.Hosting::ActivationArguments
System.Security.Policy::ApplicationDirectory
System.Security.Policy::ApplicationTrust
System.Security.Policy::GacInstalled
System.Security.Policy::Hash
System.Security.Policy::PermissionRequestEvidence
System.Security.Policy::Publisher
System.Security.Policy::Site
System.Security.Policy::StrongName
System.Security.Policy::Url
System.Security.Policy::Zone
| Name | Description | |
|---|---|---|
![]() | EvidenceBase() | Initializes a new instance of the EvidenceBase class. |
| Name | Description | |
|---|---|---|
![]() | Clone() | Creates a new object that is a complete copy of the current instance. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
Before the .NET Framework 4, almost any object could be used as an evidence object if the hosting code wanted to apply it as evidence. For example, some .NET Framework code recognized System::Uri objects as evidence. The common language runtime (CLR) considered evidence objects as System::Object references, and did not apply any type safety to them.
This presented a problem because there were implicit restrictions on which types could be used as evidence objects. Specifically, any object used as evidence had to be serializable and could not be null. If these requirements were not met, the CLR threw an exception whenever an operation that required one of these assumptions was performed.
The EvidenceBase class, which all evidence objects must derive from, was introduced in the .NET Framework 4 to enable constraints on the types of objects that can be used as evidence and to provide the ability to add new features and requirements to all evidence objects. The EvidenceBase class ensures, upon instantiation, that the evidence object is serializable. In addition, it enables new evidence requirements to be created by adding new default implementations to the base class.
All the types used by the CLR as evidence objects have been updated in the .NET Framework 4 to derive from EvidenceBase.
Available since 4.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

