Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ISymbolDocument.cs « System.Diagnostics.SymbolStore « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4725e34db06413dee8882339cc62394a92a2ff36 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//
// System.Diagnostics.SymbolStore.ISymbolDocument
//
// Author:
//   Duco Fijma (duco@lorentz.xs4all.nl)
//
//   (c) 2002 Duco Fijma
// 

namespace System.Diagnostics.SymbolStore
{

public interface ISymbolDocument {
	
	Guid CheckSumAlgorithmId {get; }
	Guid DocumentType {get; }
	bool HasEmbeddedSource {get; }
	Guid Language {get; }	
	Guid LanguageVendor {get; }
	int SourceLength {get; }
	string URL {get; }
	

	int FindClosestLine (int line);
	byte[] GetCheckSum ();
	byte[] GetSourceRange (int startLine, int startColumn, int endLine, int endColumn);

}

}