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::AddAssembly Method (Object^)

 
Note: This API is now obsolete.

Adds the specified assembly evidence to the evidence set.

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

public:
[ObsoleteAttribute("This method is obsolete. Please use AddAssemblyEvidence instead.")]
void AddAssembly(
	Object^ id
)

Parameters

id
Type: System::Object^

Any evidence object.

Exception Condition
ArgumentNullException

id is null.

ArgumentException

id is not serializable.

Use this method for evidence derived from the assembly.

System_CAPS_noteNote

This method does not perform a check to prevent adding duplicate types of evidence. Many assembly evidence objects can exist at the same time.

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

Console::WriteLine( "Adding assembly evidence." );
myEvidence->AddAssembly( "SN01" );
myEvidence->AddAssembly( gcnew Version( "0.0.0.0" ) );
myEvidence->AddAssembly( mSN );
Console::WriteLine( "Count of evidence items = {0}", myEvidence->Count );

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