NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

IMembershipCondition.Check

Checks the given evidence to determine membership.

[Visual Basic]
Function Check( _
   ByVal evidence As Evidence _
) As Boolean
[C#]
bool Check(
   Evidence evidence
);
[C++]
bool Check(
   Evidence* evidence
) = 0;
[JScript]
function Check(
   evidence : Evidence
) : Boolean;

Parameters

evidence
Evidence to make membership test.

Return Value

True if the membership condition test succeeds.

Remarks

the result of this method is how the Membership condition determines if a given code assembly (from and about which the evidence is gathered) should belong to the code group or not.

See Also

IMembershipCondition Interface | IMembershipCondition Members | System.Security.Policy Namespace