本文整理汇总了C#中Microsoft.CodeAnalysis.Solution.GetDocumentId方法的典型用法代码示例。如果您正苦于以下问题:C# Solution.GetDocumentId方法的具体用法?C# Solution.GetDocumentId怎么用?C# Solution.GetDocumentId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.CodeAnalysis.Solution
的用法示例。
在下文中一共展示了Solution.GetDocumentId方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetSymbolLocationAsync
/// <summary>
/// Gives the First Location for a given Symbol by ordering the locations using DocumentId first and Location starting position second
/// </summary>
private static async Task<Location> GetSymbolLocationAsync(Solution solution, ISymbol symbol, CancellationToken cancellationToken)
{
var locations = symbol.Locations;
var originalsourcesymbol = await SymbolFinder.FindSourceDefinitionAsync(symbol, solution, cancellationToken).ConfigureAwait(false);
if (originalsourcesymbol != null)
{
locations = originalsourcesymbol.Locations;
}
var orderedLocations = locations.OrderBy(l => l.IsInSource ? solution.GetDocumentId(l.SourceTree).Id : Guid.Empty)
.ThenBy(l => l.IsInSource ? l.SourceSpan.Start : int.MaxValue);
return orderedLocations.FirstOrDefault();
}
示例2: CreateDeclarationLocationAnnotationsAsync
public static async Task<RenameDeclarationLocationReference[]> CreateDeclarationLocationAnnotationsAsync(
Solution solution,
IEnumerable<ISymbol> symbols,
CancellationToken cancellationToken)
{
var renameDeclarationLocations = new RenameDeclarationLocationReference[symbols.Count()];
int symbolIndex = 0;
foreach (var symbol in symbols)
{
var locations = symbol.Locations;
bool overriddenFromMetadata = false;
if (symbol.IsOverride)
{
var overriddenSymbol = symbol.OverriddenMember();
if (overriddenSymbol != null)
{
overriddenSymbol = await SymbolFinder.FindSourceDefinitionAsync(overriddenSymbol, solution, cancellationToken).ConfigureAwait(false);
overriddenFromMetadata = overriddenSymbol == null || overriddenSymbol.Locations.All(loc => loc.IsInMetadata);
}
}
var location = await GetSymbolLocationAsync(solution, symbol, cancellationToken).ConfigureAwait(false);
if (location != null && location.IsInSource)
{
renameDeclarationLocations[symbolIndex] = new RenameDeclarationLocationReference(solution.GetDocumentId(location.SourceTree), location.SourceSpan, overriddenFromMetadata, locations.Count());
}
else
{
renameDeclarationLocations[symbolIndex] = new RenameDeclarationLocationReference(GetString(symbol), locations.Count());
}
symbolIndex++;
}
return renameDeclarationLocations;
}