BaseLayoutExtension Class
Base class for creating a resolver extension.
Methods
Method | Description |
---|---|
CopyFile(source, destination) | See «see M:WixToolset.Extensibility.ILayoutExtension.CopyFile(System.String,System.String)» |
MoveFile(source, destination) | See «see M:WixToolset.Extensibility.ILayoutExtension.MoveFile(System.String,System.String)» |
PostLayout() | Called at the end of ayout. |
PreLayout() | Called at the beginning of layout. |
Properties
Property | Description |
---|---|
Context | Context for use by the extension. |
Messaging | Messaging for use by the extension. |
WixToolset.Extensibility.dll version 5.0.0+41e11442b2ca93e444b60213b5ae99dcbab787d8 |
CopyFile(source, destination) Method {#copyfile_source_destination}
See «see M:WixToolset.Extensibility.ILayoutExtension.CopyFile(System.String,System.String)»
Declaration
public bool CopyFile( string source, string destination)
Parameters
Parameter | Type | Description |
---|---|---|
source | string | |
destination | string |
MoveFile(source, destination) Method {#movefile_source_destination}
See «see M:WixToolset.Extensibility.ILayoutExtension.MoveFile(System.String,System.String)»
Declaration
public bool MoveFile( string source, string destination)
Parameters
Parameter | Type | Description |
---|---|---|
source | string | |
destination | string |
PostLayout() Method {#postlayout_nop}
Called at the end of ayout.
Declaration
public void PostLayout()
PreLayout() Method {#prelayout_nop}
Called at the beginning of layout.
Declaration
public void PreLayout()
Context Property {#context}
Context for use by the extension.
Declaration
protected Data.ILayoutContext Context { get; set; }
Messaging Property {#messaging}
Messaging for use by the extension.
Declaration
protected Services.IMessaging Messaging { get; set; }