DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
StatementEvent.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 
5 
6 namespace Deveel.Data.Diagnostics {
7  public sealed class StatementEvent : Event {
8  public StatementEvent(IStatement statement) {
9  if (statement == null)
10  throw new ArgumentNullException("statement");
11 
12  Statement = statement;
13  }
14 
15  public IStatement Statement { get; private set; }
16  }
17 }
StatementEvent(IStatement statement)