ArchiMetrics.Analysis.ReferenceResolvers.ReferenceLocation.ReferenceLocation C# (CSharp) Method

ReferenceLocation() public method

public ReferenceLocation ( Microsoft.CodeAnalysis.Location location, ITypeSymbol referencingType, Microsoft.CodeAnalysis.SemanticModel model ) : Microsoft.CodeAnalysis
location Microsoft.CodeAnalysis.Location
referencingType ITypeSymbol
model Microsoft.CodeAnalysis.SemanticModel
return Microsoft.CodeAnalysis
		public ReferenceLocation(Location location, ITypeSymbol referencingType, SemanticModel model)
		{
			Location = location;
			ReferencingType = referencingType;
			Model = model;
		}
ReferenceLocation