Exemplo n.º 1
0
 /// <inheritdoc/>
 public override int GetHashCode()
 {
     unchecked
     {
         int result = AccessPoint.GetHashCode();
         result = (result * 397) ^ AppEntry?.InterfaceUri?.GetHashCode() ?? 0;
         return(result);
     }
 }
Exemplo n.º 2
0
 /// <inheritdoc/>
 public override int GetHashCode()
 {
     unchecked
     {
         int result = AccessPoint.GetHashCode();
         if (AppEntry != null && AppEntry.InterfaceUri != null)
         {
             result = (result * 397) ^ AppEntry.InterfaceUri.GetHashCode();
         }
         return(result);
     }
 }