IAttributes.Load method (1 of 7)
将 DataRow 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(DataRow row)
| parameter | description |
|---|---|
| row | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (2 of 7)
将 DataRowView 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(DataRowView view)
| parameter | description |
|---|---|
| view | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (3 of 7)
将 Dictionary 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(Dictionary<string, object> dict)
| parameter | description |
|---|---|
| dict | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (4 of 7)
将 IDataReader 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(IDataReader reader)
| parameter | description |
|---|---|
| reader | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (5 of 7)
将 IDataRecord 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(IDataRecord record)
| parameter | description |
|---|---|
| record | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (6 of 7)
将 NameValueCollection 中的数据导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(NameValueCollection nameValueCollection)
| parameter | description |
|---|---|
| nameValueCollection | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
IAttributes.Load method (7 of 7)
将JSON字符串转换为键值对后导入到实例中。 如果现有数据和导入数据名称冲突,系统将使用导入的数据覆盖现有的数据。
public void Load(string json)
| parameter | description |
|---|---|
| json | 需要导入的数据。 |
See Also
- interface IAttributes
- namespace SiteServer.Plugin
