using System;
using System.Collections.Generic;
using System.Configuration;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Server
{
///
/// AppConfig
///
public class ConfigHelper
{
///
/// 是否写日志
///
public static bool IsWriteLog
{
get
{
return Settings.Handle.Debug.IsWriteLog;
}
}
///
/// 数据对接通道名称
///
public static string DataDockingQueueName
{
get
{
return Settings.Queue.DataDockingQueueName;
}
}
///
/// 存储通道名称
///
public static string StoreQueueName
{
get
{
return Settings.Queue.StoreQueueName;
}
}
///
/// 运行交换机名称
///
public static string RunExchangeName
{
get { return Settings.Queue.RunExChangeName; }
}
}
}