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!

HashMembershipCondition Constructor

Initializes an instance of the HashMembershipCondition class.

[Visual Basic]
Public Sub New( _
   ByVal hashAlg As HashAlgorithm, _
   ByVal value() As Byte _
)
[C#]
public HashMembershipCondition(
   HashAlgorithm hashAlg,
   byte[] value
);
[C++]
public: HashMembershipCondition(
   HashAlgorithm* hashAlg,
   unsigned char* value[]
);
[JScript]
public function HashMembershipCondition(
   hashAlg : HashAlgorithm,
   value : Byte[]
);

Parameters

hashAlg
Designates the hash algorithm to use
value
Designates the hash value to test for

Exceptions

Exception Type Condition
ArgumentException if hashAlg is not a valid hash algorithm

See Also

HashMembershipCondition Class | HashMembershipCondition Members | System.Security.Policy Namespace