ISymbolWriter.Initialize(IntPtr, String, Boolean) Method

Definition

Sets the metadata emitter interface to associate with a writer.

public:
 void Initialize(IntPtr emitter, System::String ^ filename, bool fFullBuild);
public void Initialize (IntPtr emitter, string filename, bool fFullBuild);
abstract member Initialize : nativeint * string * bool -> unit
Public Sub Initialize (emitter As IntPtr, filename As String, fFullBuild As Boolean)

Parameters

emitter
IntPtr

nativeint

The metadata emitter interface.

filename
String

The file name for which the debugging symbols are written. Some writers require a file name, and others do not. If a file name is specified for a writer that does not use file names, this parameter is ignored.

fFullBuild
Boolean

true indicates that this is a full rebuild; false indicates that this is an incremental compilation.

Remarks

Initialize also sets the output file name where the debugging symbols are written. This method can be called only once and must be called before any other writer methods.

Applies to