HTTPDatabaseProxyProperties.cs 512 B

12345678910111213141516171819202122
  1. using InABox.Core;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Text;
  5. namespace PRSServer
  6. {
  7. public class HTTPDatabaseProxyProperties : DatabaseProxyProperties
  8. {
  9. [IntegerEditor]
  10. [EditorSequence(2)]
  11. public int ListenPort { get; set; }
  12. [EditorSequence(3)]
  13. [FileNameEditor("Certificate Files (*.pfx)|*.pfx")]
  14. public string CertificateFile { get; set; }
  15. public override ServerType Type() => ServerType.HTTPProxy;
  16. }
  17. }