NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

ISymbolWriter.SetUserEntryPoint

Identifies the method that the user has defined as the entry point for the current module.

[Visual Basic]
Sub SetUserEntryPoint( _
   ByVal entryMethod As SymbolToken _
)
[C#]
void SetUserEntryPoint(
   SymbolToken entryMethod
);
[C++]
void SetUserEntryPoint(
   SymbolToken entryMethod
) = 0;
[JScript]
function SetUserEntryPoint(
   entryMethod : SymbolToken
);

Parameters

entryMethod
The metadata token for the method that is the user entry point.

Remarks

This would be, perhaps, the user's main method rather than the compiler generated stubs before main.

See Also

ISymbolWriter Interface | ISymbolWriter Members | System.Diagnostics.SymbolStore Namespace