AssemblyBuilder::CreateEmbeddedResource Method (BuildProvider^, String^)
.NET Framework (current version)
Allows a build provider to create a resource file to include in the assembly compilation.
Assembly: System.Web (in System.Web.dll)
Parameters
- buildProvider
-
Type:
System.Web.Compilation::BuildProvider^
The build provider generating the resource.
- name
-
Type:
System::String^
The name of the resource file to be created.
Return Value
Type: System.IO::Stream^An open Stream that can be used to write resources, which are included in the assembly compilation.
| Exception | Condition |
|---|---|
| ArgumentException | name is not a valid file name. |
After calling the CreateEmbeddedResource method, a BuildProvider object writes the resource file contents using the returned Stream object. For example, the build provider can write the resources using a ResourceWriter object. After writing the resource file, the build provider must use the Close method to close the Stream object and free associated system resources.
.NET Framework
Available since 2.0
Available since 2.0
Show: