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

ISymbolDocumentWriter.cs « System.Diagnostics.SymbolStore « corlib « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 855b1a5cefcdafee936ef7b1723fc7314b1a7226 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;

namespace System.Diagnostics.SymbolStore
{

public interface ISymbolDocumentWriter {

	void SetCheckSum (Guid algorithmId, byte[] checkSum);
	void SetSource (byte[] source);

}

}