HostSecurityManager.GetHostSuppliedAppDomainEvidenceTypes Method

Definition

Determines which evidence types the host can supply for the application domain, if requested.

public:
 virtual cli::array <Type ^> ^ GetHostSuppliedAppDomainEvidenceTypes();
public virtual Type[] GetHostSuppliedAppDomainEvidenceTypes ();
abstract member GetHostSuppliedAppDomainEvidenceTypes : unit -> Type[]
override this.GetHostSuppliedAppDomainEvidenceTypes : unit -> Type[]
Public Overridable Function GetHostSuppliedAppDomainEvidenceTypes () As Type()

Returns

Type[]

An array of evidence types.

Remarks

This method can be overridden by a derived class. The base implementation returns null.

The types returned by this method determine whether the GenerateAppDomainEvidence method is called back into. The presence of a type in this list does not mean that the host must be able to generate this evidence type, but that it may be able to. For that reason, it is best to over-specify rather than under-specify the types in this list.

Applies to