Class ApplicationContextOptions
Class that represents options for the application context.
Inheritance
System.Object
ApplicationContextOptions
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fibula.Common.Contracts.Models
Assembly: Fibula.Common.Contracts.dll
Syntax
public class ApplicationContextOptions
Remarks
Settings marked with [MoveToControlPlane] should ultimately be moved to a dynamic control plane.
Properties
| Improve this Doc View SourceSupportedClientVersion
Gets or sets the supported client version information.
Declaration
[Required(ErrorMessage = "A supported client version must be speficied.")]
public VersionInformation SupportedClientVersion { get; set; }
Property Value
Type | Description |
---|---|
VersionInformation |
UsingCipsoftRsaKeys
Gets or sets a value indicating whether the protocol is using CipSoft RSA keys for encryption.
Declaration
public bool UsingCipsoftRsaKeys { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
WebsiteUrl
Gets or sets the website url.
Declaration
public string WebsiteUrl { get; set; }
Property Value
Type | Description |
---|---|
System.String |
World
Gets or sets the configuration of the game world.
Declaration
[Required(ErrorMessage = "Settings for the world configuration must be speficied.")]
public WorldConfiguration World { get; set; }
Property Value
Type | Description |
---|---|
WorldConfiguration |
Remarks
[MoveToControlPlane].