123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.CloudServerData.Model
- {
-
-
-
- public class AuthorizationVerification
- {
- public AuthorizationVerification()
- {
- }
- LYFZ.CloudServerData.Model.DBConnection cloudDbConn=new DBConnection();
-
-
-
- public LYFZ.CloudServerData.Model.DBConnection CloudDbConn
- {
- get { return cloudDbConn; }
- set { cloudDbConn = value; }
- }
- LYFZ.CloudServerData.Model.DBConnection dbConn;
-
-
-
- public LYFZ.CloudServerData.Model.DBConnection DbConn
- {
- get { return dbConn; }
- set { dbConn = value; }
- }
- int _Multiple = 0;
-
-
-
- public int Multiple
- {
- get { return _Multiple; }
- set { _Multiple = value; }
- }
- long _CloudServerID = 0;
-
-
-
- public long CloudServerID
- {
- get { return _CloudServerID; }
- set { _CloudServerID = value; }
- }
- bool _AuthorizationCloudDatabase = false;
-
-
-
- public bool AuthorizationCloudDatabase
- {
- get { return _AuthorizationCloudDatabase; }
- set { _AuthorizationCloudDatabase = value; }
- }
- bool _AuthorizationMoveAPP = false;
-
-
-
- public bool AuthorizationMoveAPP
- {
- get { return _AuthorizationMoveAPP; }
- set { _AuthorizationMoveAPP = value; }
- }
- string _MoveAPPApiUrl = "";
-
-
-
- public string MoveAPPApiUrl
- {
- get { return _MoveAPPApiUrl; }
- set { _MoveAPPApiUrl = value; }
- }
-
-
-
- public bool AuthorizationStatus
- {
- get
- {
- return (_AuthorizationCloudDatabase || _AuthorizationMoveAPP);
- }
- }
- string message = "未授权连接请求,服务器拒绝执行";
-
-
-
- public string Message
- {
- get { return message; }
- set { message = value; }
- }
- HPSocketCS.Extended.RequestParameters reqParameters;
-
-
-
- public HPSocketCS.Extended.RequestParameters ReqParameters
- {
- get { return reqParameters; }
- set { reqParameters = value; }
- }
- }
- }
|