// Copyright (c) .NET Foundation. All rights reserved. // Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information. namespace Microsoft.AspNetCore.Identity { /// /// Provides an abstraction for normalizing keys for lookup purposes. /// public interface ILookupNormalizer { /// /// Returns a normalized representation of the specified . /// /// The key to normalize. /// A normalized representation of the specified . string Normalize(string key); } }