| File: Evaluation\IPropertyProvider.cs | Web Access |
| Project: src\msbuild\src\Build\Microsoft.Build.csproj (Microsoft.Build) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. #nullable disable namespace Microsoft.Build.Evaluation { /// <summary> /// An interface representing an object which can provide properties to the Expander. /// </summary> /// <typeparam name="T">The type of properties provided.</typeparam> internal interface IPropertyProvider<T> where T : class { /// <summary> /// Returns a property with the specified name, or null if it was not found. /// </summary> /// <param name="name">The property name.</param> /// <returns>The property.</returns> T GetProperty(string name); /// <summary> /// Returns a property with the specified name, or null if it was not found. /// Name is the segment of the provided string with the provided start and end indexes. /// </summary> T GetProperty(string name, int startIndex, int endIndex); } }