Beispiel #1
0
        internal static XDocument FullSyncDefaultResponseToXml(FullSyncDefaultResponse fullSyncDefaultResponse)
        {
            var       json = FullSyncDefaultResponseToJson(fullSyncDefaultResponse);
            XDocument xml  = C8oFullSyncTranslator.FullSyncJsonToXml(json);

            return(xml);
        }
Beispiel #2
0
        //*** DefaultResponse ***//
        //*** Sync, ReplicatePull, ReplicatePush, Reset ***//

        internal static JObject FullSyncDefaultResponseToJson(FullSyncDefaultResponse fullSyncDefaultResponse)
        {
            var json = C8oFullSyncTranslator.DictionaryToJson(fullSyncDefaultResponse.GetProperties());

            return(json);
        }