/// <summary>
        /// Get value of BpmonlineExchangeEventsEndpointUrl system setting.
        /// </summary>
        /// <returns>Value of BpmonlineExchangeEventsEndpointUrl system setting.</returns>
        private string GetBpmonlineExchangeEventsEndpointUrl()
        {
            string endpointUrl = SysSettings.GetValue(UserConnection, "BpmonlineExchangeEventsEndpointUrl", "");

            if (endpointUrl.IsEmpty())
            {
                endpointUrl = GetNewBpmonlineExchangeEventsEndpointUrl();
                SetBpmonlineExchangeEventsEndpointUrl(endpointUrl);
            }
            return(endpointUrl);
        }
 /// <summary>
 /// Set <paramref name="endpointUrl"/> to BpmonlineExchangeEventsEndpointUrl system setting.
 /// </summary>
 /// <param name="endpointUrl"></param>
 private void SetBpmonlineExchangeEventsEndpointUrl(string endpointUrl)
 {
     SysSettings.SetDefValue(UserConnection, "BpmonlineExchangeEventsEndpointUrl", endpointUrl);
 }
示例#3
0
 public SysSettings(Terrasoft.Configuration.SysSettings source)
     : base(source)
 {
     this.CopyEntityLookupProperties(source);
 }
示例#4
0
 public SysSettings(SysSettings source)
     : base(source)
 {
 }