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!

IHashCodeProvider.GetHashCode

When implemented by a class, returns a hash code for the given object.

[Visual Basic]
Function GetHashCode( _
   ByVal obj As Object _
) As Integer
[C#]
int GetHashCode(
   object obj
);
[C++]
int GetHashCode(
   Object* obj
) = 0;
[JScript]
function GetHashCode(
   obj : Object
) : int;

Parameters

obj
The Object for which a hash code is to be returned.

Return Value

Returns a hash code for the specified object.

See Also

IHashCodeProvider Interface | IHashCodeProvider Members | System.Collections Namespace