System.Diagnostics.SymbolStore.ISymbolDocumentWriter Interface

Assembly: Mscorlib.dll
Namespace: System.Diagnostics.SymbolStore
Summary
Represents a document referenced by a symbol store.
C# Syntax:
public interface ISymbolDocumentWriter
Remarks
A document is defined by a URL and a document type GUID. Optionally, the document source can be stored in the symbol store.
See also:
System.Diagnostics.SymbolStore Namespace

System.Diagnostics.SymbolStore.ISymbolDocumentWriter Member List:

Public Methods
SetCheckSum Sets checksum information.
SetSource Stores the raw source for a document in the symbol store.

System.Diagnostics.SymbolStore.ISymbolDocumentWriter Member Details

Method: SetCheckSum(
   Guid algorithmId,
   byte[] checkSum
)
Summary
Sets checksum information.
C# Syntax:
void SetCheckSum(
   Guid algorithmId,
   byte[] checkSum
);
Parameters:

algorithmId

The GUID representing the algorithm ID.

checkSum

The checksum.

Remarks
Sets the checksum for the document.

Return to top


Method: SetSource(
   byte[] source
)
Summary
Stores the raw source for a document in the symbol store.
C# Syntax:
void SetSource(
   byte[] source
);
Parameters:

source

The document source represented as unsigned bytes.

Remarks
An array of unsigned bytes is used instead of character data to accommodate a wider variety of sources.

Return to top


Top of page

Copyright (c) 2002 Microsoft Corporation. All rights reserved.