GetHashCode() public method

public GetHashCode ( ) : int
return int
Exemplo n.º 1
0
 public static void AutomationElementGetHashCode(AutomationElement element)
 {
     Dump("GetHashCode()", true, element);
     try
     {
         object obj = element.GetHashCode();
     }
     catch (Exception exception)
     {
         VerifyException(element, exception, typeof(ElementNotAvailableException));
     }
 }