'宣言
Sub AddTableData( _ ByVal tableName As String, _ ByVal newValues As Dictionary(Of String,Object) _ )
void AddTableData( string tableName, Dictionary<string,object> newValues )
パラメータ
- tableName
- データを追加するテーブル名
- newValues
- フィールド名と値のコレクションとして作成した追加データ
'宣言
Sub AddTableData( _ ByVal tableName As String, _ ByVal newValues As Dictionary(Of String,Object) _ )
void AddTableData( string tableName, Dictionary<string,object> newValues )
public class SampleApi : ForguncyApi { [Post] public void AddSampleData() { StreamReader reader = new StreamReader(this.Context.Request.Body); string message = reader.ReadToEnd(); Dictionary<string, object> values = new Dictionary<string, object>(); values.Add("date", DateTime.Now); values.Add("message", message); values.Add("ip", Context.Request.RemoteIpAddress); this.DataAccess.AddTableData("SampleTable1", values); } }