CreateManifestResourceName.CreateManifestName Method
This API supports the .NET Framework infrastructure and is not intended to be used directly from your code.
When overridden in a derived class, creates the manifest resource name.
MSBuild is now included in Visual Studio instead of the .NET Framework. You can use MSBuild 12.0 side-by-side with versions previously deployed with the .NET Framework.For more information, see What's New in MSBuild 12.0.
Namespace: Microsoft.Build.Tasks
Assembly: Microsoft.Build.Tasks.Core (in Microsoft.Build.Tasks.Core.dll)
Syntax
'Declaration
Protected MustOverride Function CreateManifestName ( _
fileName As String, _
linkFileName As String, _
rootNamespaceName As String, _
dependentUponFileName As String, _
binaryStream As Stream _
) As String
protected abstract string CreateManifestName(
string fileName,
string linkFileName,
string rootNamespaceName,
string dependentUponFileName,
Stream binaryStream
)
protected:
virtual String^ CreateManifestName(
String^ fileName,
String^ linkFileName,
String^ rootNamespaceName,
String^ dependentUponFileName,
Stream^ binaryStream
) abstract
abstract CreateManifestName :
fileName:string *
linkFileName:string *
rootNamespaceName:string *
dependentUponFileName:string *
binaryStream:Stream -> string
protected abstract function CreateManifestName(
fileName : String,
linkFileName : String,
rootNamespaceName : String,
dependentUponFileName : String,
binaryStream : Stream
) : String
Parameters
fileName
Type: System.StringThe name of the dependent file.
linkFileName
Type: System.StringThe name of the file specified by the Link attribute.
rootNamespaceName
Type: System.StringThe root namespace. This parameter may be a null reference (Nothing in Visual Basic).
dependentUponFileName
Type: System.StringThe file name of the parent of this dependency. This parameter may be a null reference (Nothing).
binaryStream
Type: System.IO.StreamThe binary stream contents of the file. This parameter may be a null reference (Nothing).
Return Value
Type: System.String
The manifest resource name.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see dd66cd4c-b087-415f-9c3e-94e3a1835f74.