Interface IOpenDataSet<T>
A less restricted variant of the data set, for protected use.
Inherited Members
Namespace: InsaneScatterbrain.ScriptGraph
Syntax
public interface IOpenDataSet<T> : IDataSet<T>, IDataSet where T : IDataSetItem
Type Parameters
Name | Description |
---|---|
T | The item type. |
Methods
Get(string)
Gets the item of with the given ID.
Declaration
T Get(string id)
Parameters
Type | Name | Description |
---|---|---|
string | id | The ID. |
Returns
Type | Description |
---|---|
T | The item. |
GetByName(string)
Gets the item of with the given name.
Declaration
T GetByName(string name)
Parameters
Type | Name | Description |
---|---|---|
string | name | The name. |
Returns
Type | Description |
---|---|
T | The item. |