C# Класс NetSparkle.Sparkle

Class to communicate with a sparkle-based appcast
Наследование: IDisposable
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
CancelFileDownload ( ) : void

Cancels the install

CheckForUpdatesAtUserRequest ( ) : Task

Check for updates, using interaction appropriate for if the user just said "check for updates".

CheckForUpdatesQuietly ( ) : Task

Check for updates, using interaction appropriate for where the user doesn't know you're doing it, so be polite

CheckOnFirstApplicationIdle ( ) : void

The app will check once, after the app settles down.

Dispose ( ) : void

Is called in the using context and will stop all background activities

GetAbsoluteUrl ( string url ) : Uri

Converts an relative url to an absolute url based on the

GetApplicationConfig ( ) : NetSparkle.NetSparkleConfiguration

This method reads the local sparkle configuration for the given reference assembly

GetUpdateStatus ( NetSparkle.NetSparkleConfiguration config ) : Task

This method checks if an update is required. During this process the appcast will be downloaded and checked against the reference assembly. Ensure that the calling process has read access to the reference assembly. This method is also called from the background loops.

GetWebContentResponse ( string Url ) : WebResponse

TODO

GetWebContentStream ( string Url ) : Stream

TODO

ReportDiagnosticMessage ( string message ) : void

This method reports a message in the diagnostic window

ShowUpdateNeededUI ( NetSparkleAppCastItem updates ) : void

This method shows the update ui and allows to perform the update process

Sparkle ( String appcastUrl ) : System

ctor which needs the appcast url

Sparkle ( String appcastUrl, Icon applicationIcon ) : System

ctor which needs the appcast url

Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode ) : System

ctor which needs the appcast url

Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey ) : System

ctor which needs the appcast url

Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey, String referenceAssembly ) : System

ctor which needs the appcast url and a referenceassembly

Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey, String referenceAssembly, INetSparkleUIFactory factory ) : System

ctor which needs the appcast url and a referenceassembly

StartLoop ( System.Boolean doInitialCheck ) : void

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.

StartLoop ( System.Boolean doInitialCheck, System.Boolean forceInitialCheck ) : void

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.

StartLoop ( System.Boolean doInitialCheck, System.Boolean forceInitialCheck, System.TimeSpan checkFrequency ) : void

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.

StartLoop ( System.Boolean doInitialCheck, System.TimeSpan checkFrequency ) : void

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.

StopLoop ( ) : void

This method will stop the sparkle background loop and is called through the disposable interface automatically

UpdateSystemProfileInformation ( NetSparkle.NetSparkleConfiguration config ) : void

This method updates the profile information which can be sended to the server if enabled

Защищенные методы

Метод Описание
GetInstallerCommand ( string downloadFileName ) : string

Return installer runner command. May throw InvalidDataException

Приватные методы

Метод Описание
AskApplicationToSafelyCloseUp ( ) : Task

Apps may need, for example, to let user save their work

CheckForUpdates ( bool useNotificationToast ) : Task

Does a one-off check for updates

InitDownloadAndInstallProcess ( NetSparkleAppCastItem item ) : void

Starts the download process

OnDownloadFinished ( object sender, AsyncCompletedEventArgs e ) : void

Called when the installer is downloaded

OnFirstApplicationIdle ( object sender, EventArgs e ) : void
OnProgressWindowInstallAndRelaunch ( object sender, EventArgs e ) : void

Called when the progress bar fires the update event

OnToastClick ( NetSparkleAppCastItem updates ) : void
OnUserWindowUserResponded ( object sender, EventArgs e ) : void

Called when the user responds to the "skip, later, install" question.

OnWindowsFormsApplicationExit ( object sender, EventArgs e ) : void

Called when a Windows forms application exits. Starts the installer.

OnWorkerDoWork ( object sender, DoWorkEventArgs e ) : void

This method will be executed as worker thread

OnWorkerProgressChanged ( object sender, ProgressChangedEventArgs e ) : void

This method will be notified

ProfileDataThreadStart ( object obj ) : void

Profile data thread

RemoteCertificateValidation ( object sender, X509Certificate certificate, X509Chain chain, SslPolicyErrors sslPolicyErrors ) : bool

Determine if the remote X509 certificate is validate

RunDownloadedInstaller ( ) : System.Threading.Task

Runs the downloaded installer

ShowUpdateNeededUIInner ( NetSparkleAppCastItem updates ) : void
UnregisterEvents ( ) : void

Unregisters events so that we don't have multiple items updating

Update ( NetSparkleAppCastItem updates ) : void

Updates from appcast

Описание методов

CancelFileDownload() публичный Метод

Cancels the install
public CancelFileDownload ( ) : void
Результат void

CheckForUpdatesAtUserRequest() публичный Метод

Check for updates, using interaction appropriate for if the user just said "check for updates".
public CheckForUpdatesAtUserRequest ( ) : Task
Результат Task

CheckForUpdatesQuietly() публичный Метод

Check for updates, using interaction appropriate for where the user doesn't know you're doing it, so be polite
public CheckForUpdatesQuietly ( ) : Task
Результат Task

CheckOnFirstApplicationIdle() публичный Метод

The app will check once, after the app settles down.
public CheckOnFirstApplicationIdle ( ) : void
Результат void

Dispose() публичный Метод

Is called in the using context and will stop all background activities
public Dispose ( ) : void
Результат void

GetAbsoluteUrl() публичный Метод

Converts an relative url to an absolute url based on the
public GetAbsoluteUrl ( string url ) : Uri
url string relative or absolute url
Результат System.Uri

GetApplicationConfig() публичный Метод

This method reads the local sparkle configuration for the given reference assembly
public GetApplicationConfig ( ) : NetSparkle.NetSparkleConfiguration
Результат NetSparkle.NetSparkleConfiguration

GetInstallerCommand() защищенный Метод

Return installer runner command. May throw InvalidDataException
protected GetInstallerCommand ( string downloadFileName ) : string
downloadFileName string
Результат string

GetUpdateStatus() публичный Метод

This method checks if an update is required. During this process the appcast will be downloaded and checked against the reference assembly. Ensure that the calling process has read access to the reference assembly. This method is also called from the background loops.
public GetUpdateStatus ( NetSparkle.NetSparkleConfiguration config ) : Task
config NetSparkle.NetSparkleConfiguration the configuration
Результат Task

GetWebContentResponse() публичный Метод

TODO
public GetWebContentResponse ( string Url ) : WebResponse
Url string
Результат System.Net.WebResponse

GetWebContentStream() публичный Метод

TODO
public GetWebContentStream ( string Url ) : Stream
Url string
Результат Stream

ReportDiagnosticMessage() публичный Метод

This method reports a message in the diagnostic window
public ReportDiagnosticMessage ( string message ) : void
message string
Результат void

ShowUpdateNeededUI() публичный Метод

This method shows the update ui and allows to perform the update process
public ShowUpdateNeededUI ( NetSparkleAppCastItem updates ) : void
updates NetSparkleAppCastItem updates to show UI for
Результат void

Sparkle() публичный Метод

ctor which needs the appcast url
public Sparkle ( String appcastUrl ) : System
appcastUrl String the URL for the appcast file
Результат System

Sparkle() публичный Метод

ctor which needs the appcast url
public Sparkle ( String appcastUrl, Icon applicationIcon ) : System
appcastUrl String the URL for the appcast file
applicationIcon System.Drawing.Icon If you're invoking this from a form, this would be this.Icon
Результат System

Sparkle() публичный Метод

ctor which needs the appcast url
public Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode ) : System
appcastUrl String the URL for the appcast file
applicationIcon System.Drawing.Icon If you're invoking this from a form, this would be this.Icon
securityMode SecurityMode Sparkle Security mode
Результат System

Sparkle() публичный Метод

ctor which needs the appcast url
public Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey ) : System
appcastUrl String the URL for the appcast file
applicationIcon System.Drawing.Icon If you're invoking this from a form, this would be this.Icon
securityMode SecurityMode
dsaPublicKey String The dsa public key to verfiy the sigatures.
Результат System

Sparkle() публичный Метод

ctor which needs the appcast url and a referenceassembly
public Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey, String referenceAssembly ) : System
appcastUrl String the URL for the appcast file
applicationIcon System.Drawing.Icon If you're invoking this from a form, this would be this.Icon
securityMode SecurityMode
dsaPublicKey String
referenceAssembly String the name of the assembly to use for comparison
Результат System

Sparkle() публичный Метод

ctor which needs the appcast url and a referenceassembly
public Sparkle ( String appcastUrl, Icon applicationIcon, SecurityMode securityMode, String dsaPublicKey, String referenceAssembly, INetSparkleUIFactory factory ) : System
appcastUrl String the URL for the appcast file
applicationIcon System.Drawing.Icon If you're invoking this from a form, this would be this.Icon
securityMode SecurityMode
dsaPublicKey String
referenceAssembly String the name of the assembly to use for comparison
factory INetSparkleUIFactory UI factory to use
Результат System

StartLoop() публичный Метод

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.
public StartLoop ( System.Boolean doInitialCheck ) : void
doInitialCheck System.Boolean
Результат void

StartLoop() публичный Метод

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.
public StartLoop ( System.Boolean doInitialCheck, System.Boolean forceInitialCheck ) : void
doInitialCheck System.Boolean true if this instance should do an initial check.
forceInitialCheck System.Boolean true if this instance should force an initial check.
Результат void

StartLoop() публичный Метод

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.
public StartLoop ( System.Boolean doInitialCheck, System.Boolean forceInitialCheck, System.TimeSpan checkFrequency ) : void
doInitialCheck System.Boolean true if this instance should do an initial check.
forceInitialCheck System.Boolean true if this instance should force an initial check.
checkFrequency System.TimeSpan the frequency between checks.
Результат void

StartLoop() публичный Метод

The method starts a NetSparkle background loop If NetSparkle is configured to check for updates on startup, proceeds to perform the check. You should only call this function when your app is initialized and shows its main window.
public StartLoop ( System.Boolean doInitialCheck, System.TimeSpan checkFrequency ) : void
doInitialCheck System.Boolean true if this instance should do an initial check.
checkFrequency System.TimeSpan the frequency between checks.
Результат void

StopLoop() публичный Метод

This method will stop the sparkle background loop and is called through the disposable interface automatically
public StopLoop ( ) : void
Результат void

UpdateSystemProfileInformation() публичный Метод

This method updates the profile information which can be sended to the server if enabled
public UpdateSystemProfileInformation ( NetSparkle.NetSparkleConfiguration config ) : void
config NetSparkle.NetSparkleConfiguration the configuration
Результат void