/// <summary> /// Having read a tag, process the corresponding value data. /// </summary> /// <param name="JSONReader">The input stream</param> /// <param name="Tag">The tag</param> public override void DeserializeToken (JSONReader JSONReader, string Tag) { switch (Tag) { case "EmailAddress" : { EmailAddress = JSONReader.ReadString (); break; } case "ReplyToAddress" : { ReplyToAddress = JSONReader.ReadString (); break; } case "DisplayName" : { DisplayName = JSONReader.ReadString (); break; } case "AccountName" : { AccountName = JSONReader.ReadString (); break; } case "Inbound" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Inbound = new List <Connection> (); while (_Going) { // an untagged structure. var _Item = new Connection (JSONReader); Inbound.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "Outbound" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Outbound = new List <Connection> (); while (_Going) { // an untagged structure. var _Item = new Connection (JSONReader); Outbound.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "Sign" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Sign = new List <PublicKey> (); while (_Going) { // an untagged structure. var _Item = new PublicKey (JSONReader); Sign.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "Encrypt" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Encrypt = new List <PublicKey> (); while (_Going) { // an untagged structure. var _Item = new PublicKey (JSONReader); Encrypt.Add (_Item); _Going = JSONReader.NextArray (); } break; } default : { break; } } // check up that all the required elements are present }
/// <summary> /// Having read a tag, process the corresponding value data. /// </summary> /// <param name="JSONReader">The input stream</param> /// <param name="Tag">The tag</param> public override void DeserializeToken (JSONReader JSONReader, string Tag) { switch (Tag) { case "HostConnection" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); HostConnection = new List <Connection> (); while (_Going) { // an untagged structure. var _Item = new Connection (JSONReader); HostConnection.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "HostKeys" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); HostKeys = new List <PublicKey> (); while (_Going) { // an untagged structure. var _Item = new PublicKey (JSONReader); HostKeys.Add (_Item); _Going = JSONReader.NextArray (); } break; } default : { base.DeserializeToken(JSONReader, Tag); break; } } // check up that all the required elements are present }
/// <summary> /// Having read a tag, process the corresponding value data. /// </summary> /// <param name="JSONReader">The input stream</param> /// <param name="Tag">The tag</param> public override void DeserializeToken (JSONReader JSONReader, string Tag) { switch (Tag) { case "Sites" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Sites = new List <string> (); while (_Going) { string _Item = JSONReader.ReadString (); Sites.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "DNS" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); DNS = new List <Connection> (); while (_Going) { // an untagged structure. var _Item = new Connection (JSONReader); DNS.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "Prefix" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); Prefix = new List <string> (); while (_Going) { string _Item = JSONReader.ReadString (); Prefix.Add (_Item); _Going = JSONReader.NextArray (); } break; } case "CTL" : { CTL = JSONReader.ReadBinary (); break; } case "WebPKI" : { // Have a sequence of values bool _Going = JSONReader.StartArray (); WebPKI = new List <string> (); while (_Going) { string _Item = JSONReader.ReadString (); WebPKI.Add (_Item); _Going = JSONReader.NextArray (); } break; } default : { break; } } // check up that all the required elements are present }
///// <summary> ///// Make a device entry for the application ///// </summary> ///// <param name="DeviceProfile">Device profile of device to add.</param> ///// <returns>The device entry.</returns> //public override DeviceEntry MakeEntry(SignedDeviceProfile DeviceProfile) { // var DeviceEntry = base.MakeEntry(DeviceProfile); // //DeviceEntry.EncryptedKey = MakeDecryptInfo(DeviceProfile.Signed); // return DeviceEntry; // } /// <summary> /// Add a DNS entry to the network configuration. /// </summary> /// <param name="Connection">The DNS connection data to use.</param> public void AddDNS(Connection Connection) { Private.DNS = Private.DNS == null ? new List<Connection>() : Private.DNS; Private.DNS.Add(Connection); }
List<Connection> GetOutbound() { var _Outbound = new Connection(); var ConnectionList = new List<Connection> { _Outbound }; var SMTP_Server = MessageAccount.SMTP_Server; if (SMTP_Server != null) { _Outbound.ServiceName = SMTP_Server; _Outbound.Port = (int)MessageAccount.SMTP_Port; _Outbound.AppProtocol = AppProtocol.SMTP; _Outbound.UserName = MessageAccount.SMTP_User_Name; _Outbound.Password = null; _Outbound.TLSMode = MessageAccount.SMTP_Secure_Connection == 0 ? TLSMode.None : TLSMode.Direct; _Outbound.SecureAuth = MessageAccount.SMTP_Use_Sicily != 0; _Outbound.TimeOut = (int) MessageAccount.SMTP_Timeout; } return ConnectionList; }
/// <summary> /// Construct an instance from the specified tagged JSONReader stream. /// </summary> /// <param name="JSONReader">Input stream</param> /// <param name="Out">The created object</param> public static void Deserialize(JSONReader JSONReader, out JSONObject Out) { JSONReader.StartObject (); if (JSONReader.EOR) { Out = null; return; } string token = JSONReader.ReadToken (); Out = null; switch (token) { case "PublicKey" : { var Result = new PublicKey (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedData" : { var Result = new SignedData (); Result.Deserialize (JSONReader); Out = Result; break; } case "EncryptedData" : { var Result = new EncryptedData (); Result.Deserialize (JSONReader); Out = Result; break; } case "Connection" : { var Result = new Connection (); Result.Deserialize (JSONReader); Out = Result; break; } case "Entry" : { var Result = new Entry (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedProfile" : { var Result = new SignedProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "Profile" : { Out = null; throw new Exception ("Can't create abstract type"); } case "SignedDeviceProfile" : { var Result = new SignedDeviceProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "DeviceProfile" : { var Result = new DeviceProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "DevicePrivateProfile" : { var Result = new DevicePrivateProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedMasterProfile" : { var Result = new SignedMasterProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "MasterProfile" : { var Result = new MasterProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedPersonalProfile" : { var Result = new SignedPersonalProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "PersonalProfile" : { var Result = new PersonalProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedApplicationProfile" : { var Result = new SignedApplicationProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "EncryptedProfile" : { var Result = new EncryptedProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "ApplicationProfile" : { var Result = new ApplicationProfile (); Result.Deserialize (JSONReader); Out = Result; break; } case "ApplicationProfilePrivate" : { var Result = new ApplicationProfilePrivate (); Result.Deserialize (JSONReader); Out = Result; break; } case "ApplicationProfileEntry" : { var Result = new ApplicationProfileEntry (); Result.Deserialize (JSONReader); Out = Result; break; } case "EscrowEntry" : { var Result = new EscrowEntry (); Result.Deserialize (JSONReader); Out = Result; break; } case "OfflineEscrowEntry" : { var Result = new OfflineEscrowEntry (); Result.Deserialize (JSONReader); Out = Result; break; } case "OnlineEscrowEntry" : { var Result = new OnlineEscrowEntry (); Result.Deserialize (JSONReader); Out = Result; break; } case "EscrowedKeySet" : { var Result = new EscrowedKeySet (); Result.Deserialize (JSONReader); Out = Result; break; } case "ConnectionRequest" : { var Result = new ConnectionRequest (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedConnectionRequest" : { var Result = new SignedConnectionRequest (); Result.Deserialize (JSONReader); Out = Result; break; } case "ConnectionResult" : { var Result = new ConnectionResult (); Result.Deserialize (JSONReader); Out = Result; break; } case "SignedConnectionResult" : { var Result = new SignedConnectionResult (); Result.Deserialize (JSONReader); Out = Result; break; } default : { throw new Exception ("Not supported"); } } JSONReader.EndObject (); }
/// <summary> /// Deserialize a tagged stream /// </summary> /// <param name="JSONReader">The input stream</param> /// <returns>The created object.</returns> public static new Connection FromTagged (JSONReader JSONReader) { Connection Out = null; JSONReader.StartObject (); if (JSONReader.EOR) { return null; } string token = JSONReader.ReadToken (); switch (token) { case "Connection" : { var Result = new Connection (); Result.Deserialize (JSONReader); Out = Result; break; } default : { //Ignore the unknown data //throw new Exception ("Not supported"); break; } } JSONReader.EndObject (); return Out; }