123456789101112131415161718192021 |
- using InABox.Core;
- using System;
- using System.Collections.Generic;
- using System.Text;
- namespace PRSServer
- {
- public class WebSocketDatabaseProxyProperties : DatabaseProxyProperties
- {
- [IntegerEditor]
- [EditorSequence(1)]
- public int ListenPort { get; set; }
-
- [EditorSequence(2)]
- [FileNameEditor("Certificate Files (*.pfx)|*.pfx")]
- public string CertificateFile { get; set; }
- public override ServerType Type() => ServerType.WebSocketProxy;
- }
- }
|