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.ControllerAssembly: Kjs.AppLife.Update.Controller (in Kjs.AppLife.Update.Controller.dll) Version: 5.1.0.9 (5.1.0.9)
Syntaxpublic string PublicKeyToken { get; set; }
Public Property PublicKeyToken As String
Get
Set
public:
property String^ PublicKeyToken {
String^ get ();
void set (String^ value);
}
member PublicKeyToken : string with 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
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