Documentation ¶
Overview ¶
Package clickonce provides support for downloading ClickOnce applications.
Index ¶
Constants ¶
View Source
const ( // AssemblyDependency indicates a dependency required for the application. AssemblyDependency coType = iota // NonAssemblyFile indicates a file used by the application. NonAssemblyFile )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClickOnce ¶
type ClickOnce struct {
// contains filtered or unexported fields
}
A ClickOnce represents ClickOnce application files.
func (*ClickOnce) DeployedFiles ¶
func (co *ClickOnce) DeployedFiles() map[string]DeployedFile
DeployedFiles get all deployed files.
func (*ClickOnce) Get ¶
Get download only a subset of all files required or used by ClickOnce application. If subset is nil or empty, all files are downloaded.
func (*ClickOnce) SetOutputDir ¶
SetOutputDir set the path of the directory where to save deployed files.
type DeployedFile ¶
type DeployedFile struct { // Deployed file type. Type coType // Deployed file content. Content []byte }
A DeployedFile represents a ClickOnce deployed file.
Click to show internal directories.
Click to hide internal directories.