AnalyzerConfigSet.GetOptionsForSourcePath(String) Method

Definition

Returns a AnalyzerConfigOptionsResult for a source file. This computes which AnalyzerConfig rules applies to this file, and correctly applies precedence rules if there are multiple rules for the same file.

public Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult GetOptionsForSourcePath (string sourcePath);
member this.GetOptionsForSourcePath : string -> Microsoft.CodeAnalysis.AnalyzerConfigOptionsResult
Public Function GetOptionsForSourcePath (sourcePath As String) As AnalyzerConfigOptionsResult

Parameters

sourcePath
String

The path to a file such as a source file or additional file. Must be non-null.

Returns

Remarks

This method is safe to call from multiple threads.

Applies to