Click or drag to resize
UpdateControllerPublicKeyToken Property
Gets or sets the public key token of the strong name key used to create the updates that will be downloaded and applied by the UpdateController. If an update cannot be validated using this key, it will not be applied.

Namespace: Kjs.AppLife.Update.Controller
Assembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntax
public string PublicKeyToken { get; set; }

Property Value

Type: String
The public key token of the strong name key used to create the updates that will be downloaded and applied by the controller.
Exceptions
ExceptionCondition
InvalidOperationExceptionThe property is set and IsBusy is .
Remarks

The value of this property must match the public key token of the AppLife Update project used to create the updates that the controller will download. When an update is built, it is signed with the corresponding private key, and the controller uses this public key to verify that it has not been altered.

Verification is performed during calls to ValidateUpdate, ApplyUpdate, and UpdateInteractive.

See Also