ILookupNormalizer Interface

Summary

Provides an abstraction for normalizing keys for lookup purposes.

Syntax

public interface ILookupNormalizer

GitHub

View on GitHub

interface Microsoft.AspNet.Identity.ILookupNormalizer

Methods

Normalize(System.String)

Returns a normalized representation of the specified key.

Arguments:
  • key (System.String) – The key to normalize.
Return type:

System.String

Returns:

A normalized representation of the specified <paramref name=”key” />.

string Normalize(string key)