📄 idataaccessorcreatorconfig.cs
字号:
#region Copyright & License
//
// $Copyright:$
//
#endregion
#region Document Information
// $Author: Bai.shijun $
// $Rev: 511 $
// $Date: 05-10-08 16:12 $
#endregion
using System;
using System.Collections;
using System.Collections.Generic;
using System.Text;
using System.Xml;
namespace Eai.Data
{
public interface IDataAccessorCreatorConfig
{
string Name
{
get;
}
string Type
{
get;
}
IDictionary<string, string> Properties
{
get;
}
/// <summary>
/// 配置<see cref="IDataAccessorCreator"/>的元素节点,仅仅在使用XML应用配置是有效。如果未使用XML配置则值为null.
/// </summary>
XmlNode ConfigNode
{
get;
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -