FileEntity.HasCaseBeenResolved Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets a value that indicates whether the values of this object are case sensitive.
public:
property bool HasCaseBeenResolved { bool get(); };
public bool HasCaseBeenResolved { get; }
member this.HasCaseBeenResolved : bool
Public ReadOnly Property HasCaseBeenResolved As Boolean
Property Value
Remarks
When possible, this value will be set to True
by default. However, a known case when it's False
is when the path comes from an opened solution and that the entire string is either in upper case or in lower case. If so, we may want to resolve the case by doing a IO access. Therefore, this property is here to try to limitate the amount of required IO access.