IVsSingleFileGenerator.DefaultExtension(String) Method

Definition

Retrieves the file extension that is given to the output file name.

public:
 int DefaultExtension([Runtime::InteropServices::Out] System::String ^ % pbstrDefaultExtension);
int DefaultExtension([Runtime::InteropServices::Out] std::wstring const & & pbstrDefaultExtension);
public int DefaultExtension (out string pbstrDefaultExtension);
abstract member DefaultExtension : string -> int
Public Function DefaultExtension (ByRef pbstrDefaultExtension As String) As Integer

Parameters

pbstrDefaultExtension
String

[out, retval] Returns the file extension that is to be given to the output file name. The returned extension must include a leading period.

Returns

If the method succeeds, it returns S_OK. If it fails, it returns an error code.

Remarks

The project system invokes DefaultExtension in order to determine what extension to give to the generated output file.

The project system creates the file name of the generated file by:

  • Stripping the extension of the input file.

  • Appending the extension obtained from DefaultExtension.

  • Making the file name unique, if necessary.

Applies to