Class ScriptSqlResult
Inheritance
System.Object
ScriptSqlResult
Namespace: Simplic.Framework.DBUI
Assembly: Simplic.Framework.dll
Syntax
public class ScriptSqlResult : DynamicObject
Constructors
| Improve this Doc View SourceScriptSqlResult()
Declaration
public ScriptSqlResult()
Methods
| Improve this Doc View SourceAdd(String, Object)
Add Key / Value to the Content-List
Declaration
public void Add(string Key, object Value)
Parameters
Type | Name | Description |
---|---|---|
System.String | Key | Key |
System.Object | Value | Value |
ContainsKey(String)
Determines whether the ScriptSqlResult contains an element with the specified key.
Declaration
public bool ContainsKey(string key)
Parameters
Type | Name | Description |
---|---|---|
System.String | key | The key to locate in the ScriptSqlResult. |
Returns
Type | Description |
---|---|
System.Boolean | True if the ScriptSqlResult contains an element with the key; otherwise, false. |
GetAsDictionary()
Return the content as string-object dictionarx
Declaration
public IDictionary<string, object> GetAsDictionary()
Returns
Type | Description |
---|---|
IDictionary<System.String, System.Object> | Dictionary containing properties |
GetAsStringDictionary()
Gibt eine Zeile as Diktionary zurück, wo Key als auch Value strings sind
Declaration
public IDictionary<string, string> GetAsStringDictionary()
Returns
Type | Description |
---|---|
IDictionary<System.String, System.String> | Dictionary mit Key-Value als String |
TryGetMember(System.Dynamic.GetMemberBinder, out Object)
Try to get Member
Declaration
public override bool TryGetMember(System.Dynamic.GetMemberBinder Binder, out object Result)
Parameters
Type | Name | Description |
---|---|---|
System.Dynamic.GetMemberBinder | Binder | |
System.Object | Result |
Returns
Type | Description |
---|---|
System.Boolean |
TrySetMember(System.Dynamic.SetMemberBinder, Object)
Try to set Member
Declaration
public override bool TrySetMember(System.Dynamic.SetMemberBinder Binder, object Value)
Parameters
Type | Name | Description |
---|---|---|
System.Dynamic.SetMemberBinder | Binder | |
System.Object | Value |
Returns
Type | Description |
---|---|
System.Boolean |