Implemented interface member:
method
GetProperty
Microsoft.Build.Evaluation.IPropertyProvider<T>.GetProperty(System.String, System.Int32, System.Int32)
6 references to GetProperty
Microsoft.Build (5)
BackEnd\Components\RequestBuilder\Lookup.cs (2)
422ProjectPropertyInstance property = scope.PropertySets.GetProperty(name, startIndex, endIndex); 431ProjectPropertyInstance property = scope.Properties.GetProperty(name, startIndex, endIndex);
Collections\PropertyDictionary.cs (1)
324return GetProperty(keyString, startIndex, endIndex);
Definition\Project.cs (1)
4574return Properties.GetProperty(name, startIndex, endIndex);
Instance\ProjectInstance.cs (1)
1748return _properties.GetProperty(name, startIndex, endIndex);
Microsoft.Build.Engine.UnitTests (1)
Collections\MSBuildNameIgnoreCaseComparer_Tests.cs (1)
52ProjectPropertyInstance value = dictionary.GetProperty(s, 2, 4);