DeveelDB  20151217
complete SQL database system, primarly developed for .NET/Mono frameworks
Public Member Functions | Properties | List of all members
Deveel.Data.Protocol.SchemaChangeRequest Class Reference
Inheritance diagram for Deveel.Data.Protocol.SchemaChangeRequest:
Deveel.Data.Protocol.IMessage

Public Member Functions

 SchemaChangeRequest (string newSchema)
 

Properties

string NewSchema [get, private set]
 

Detailed Description

Definition at line 20 of file SchemaChangeRequest.cs.

Constructor & Destructor Documentation

Deveel.Data.Protocol.SchemaChangeRequest.SchemaChangeRequest ( string  newSchema)
inline

Definition at line 21 of file SchemaChangeRequest.cs.

21  {
22  if (String.IsNullOrEmpty(newSchema))
23  throw new ArgumentNullException("newSchema");
24 
25  NewSchema = newSchema;
26  }
A long string in the system.

Property Documentation

string Deveel.Data.Protocol.SchemaChangeRequest.NewSchema
getprivate set

Definition at line 28 of file SchemaChangeRequest.cs.


The documentation for this class was generated from the following file: