| 123456789101112131415161718192021222324252627282930 |
- //
- // System.Diagnostics.SymbolStore.ISymbolDocument
- //
- // Author:
- // Duco Fijma ([email protected])
- //
- // (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);
- }
- }
|