| File: Plugins\IIdGenerator.cs | Web Access |
| Project: NuGet.Protocol.csproj (NuGet.Protocol) |
// 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 NuGet.Protocol.Plugins { /// <summary> /// A unique identifier generator. /// </summary> public interface IIdGenerator { /// <summary> /// Generates a new unique identifier. /// </summary> /// <returns>A unique identifier.</returns> string GenerateUniqueId(); } }