Implement GetHashCode

This commit is contained in:
Brennan 2015-12-08 10:27:08 -08:00
parent 5231683aae
commit 5e42d26fd5
1 changed files with 1 additions and 1 deletions

View File

@ -102,7 +102,7 @@ namespace Microsoft.AspNet.Http.Features
public int GetHashCode(KeyValuePair<Type, object> obj)
{
throw new NotImplementedException();
return obj.Key.GetHashCode();
}
}
}