This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,22 @@
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);
}
}