Click or drag to resize

BasicNoUIObjSecret Property

Gets or sets the secret.

Namespace: WinWrap.Basic.Server
Assembly: WinWrap.Basic.Server (in WinWrap.Basic.Server.dll)
Syntax
public Guid Secret { get; set; }

Property Value

Guid
The secret.

Implements

IBasicNoUISecret
Remarks
Use your Application/Server certificate's secret. Refer to your Application/Server cerificate on your Certificates page.

The secret is used during an Initialize call.

Failure to set the Secret property prior to creation will prevent the object/component from initializing on non-development machines.

{00000000-0000-0000-0000-000000000000} can be used on systems which have the WinWrap Basic development software installed. Do not use this special secret for software that you ship to your customers, because it won't work.

Example
// replace with your Application/Server certificate's secret
BasicNoUIObj.Secret = new Guid("{00000000-0000-0000-0000-000000000000}");
BasicNoUIObj.Initialize();
See Also