CreateVisualBasicManifestResourceName.CreateManifestName Method

Definition

Utility function for creating a VB-style manifest name from a resource name.

This API supports the product infrastructure and is not intended to be used directly from your code.

protected:
 override System::String ^ CreateManifestName(System::String ^ fileName, System::String ^ linkFileName, System::String ^ rootNamespace, System::String ^ dependentUponFileName, System::IO::Stream ^ binaryStream);
protected override string CreateManifestName (string fileName, string linkFileName, string rootNamespace, string dependentUponFileName, System.IO.Stream binaryStream);
override this.CreateManifestName : string * string * string * string * System.IO.Stream -> string
Protected Overrides Function CreateManifestName (fileName As String, linkFileName As String, rootNamespace As String, dependentUponFileName As String, binaryStream As Stream) As String

Parameters

fileName
String

The file name of the dependent (usually a .resx)

linkFileName
String

The file name of the dependent (usually a .resx)

rootNamespace
String

The root namespace (usually from the project file). May be null

dependentUponFileName
String

The file name of the parent of this dependency (usually a .vb file). May be null

binaryStream
Stream

File contents binary stream, may be null

Returns

Returns the manifest name

Applies to