UriBuilder.GetHashCode 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
返回 URI 的哈希代码。
public:
override int GetHashCode();
public override int GetHashCode ();
override this.GetHashCode : unit -> int
Public Overrides Function GetHashCode () As Integer
返回
为 URI 生成的哈希代码。
注解
生成哈希代码而不包括任何片段。 URI http://www.contoso.com/index.htm#search
并 http://www.contoso.com/index.htm
生成相同的哈希代码。
A 和 B 的 Uri 哈希代码在 A.Equals (B) 时保证相同 true
。
此方法实现 Object.GetHashCode。