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