using System;
using System.Runtime.InteropServices;
namespace System.Diagnostics.SymbolStore
{
/// Represents a document referenced by a symbol store.
// Token: 0x0200014E RID: 334
[ComVisible(true)]
public interface ISymbolDocumentWriter
{
/// Sets checksum information.
/// The GUID representing the algorithm ID.
/// The checksum.
// Token: 0x060010E1 RID: 4321
void SetCheckSum(Guid algorithmId, byte[] checkSum);
/// Stores the raw source for a document in the symbol store.
/// The document source represented as unsigned bytes.
// Token: 0x060010E2 RID: 4322
void SetSource(byte[] source);
}
}