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.

Evidence::RemoveType Method (Type^)

 

Removes the evidence for a given type from the host and assembly enumerations.

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

public:
[ComVisibleAttribute(false)]
void RemoveType(
	Type^ t
)

Parameters

t
Type: System::Type^

The type of the evidence to be removed.

Exception Condition
ArgumentNullException

t is null.

The results of executing the RemoveType method can be confirmed using the GetAssemblyEnumerator method and the GetHostEnumerator method.

The following code example shows the use of the RemoveType method. This example is part of a larger example provided for the Evidence class.

Console::WriteLine( "\nRemove URL evidence." );
myEvidence->RemoveType( url->GetType() );
Console::WriteLine( "Evidence count is now: {0}", myEvidence->Count );

SecurityPermission

for the ability to control evidence. Security action: Demand. Associated enumeration: SecurityPermissionFlag::ControlEvidence

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