|
void ISerializable. | GetObjectData (SerializationInfo info, StreamingContext context) |
|
|
readonly Dictionary< string, object > | metadata |
|
Definition at line 22 of file NetworkEnvelope.cs.
Deveel.Data.Protocol.NetworkEnvelope.NetworkEnvelope |
( |
int |
dispatchId, |
|
|
IMessage |
message |
|
) |
| |
|
inline |
Definition at line 25 of file NetworkEnvelope.cs.
28 metadata =
new Dictionary<string, object>();
readonly Dictionary< string, object > metadata
Deveel.Data.Protocol.NetworkEnvelope.NetworkEnvelope |
( |
SerializationInfo |
info, |
|
|
StreamingContext |
context |
|
) |
| |
|
inlineprotected |
Definition at line 31 of file NetworkEnvelope.cs.
32 DispatchId = info.GetInt32(NetworkEnvelopeMetadataKeys.DispatchId);
34 Error = (ServerError) info.GetValue(
"Error", typeof (ServerError));
35 Message = (IMessage) info.GetValue(
"Message", typeof (IMessage));
object Deveel.Data.Protocol.NetworkEnvelope.GetMetadata |
( |
string |
key | ) |
|
|
inlineprotected |
Definition at line 42 of file NetworkEnvelope.cs.
44 if (!
metadata.TryGetValue(key, out value))
readonly Dictionary< string, object > metadata
void ISerializable. Deveel.Data.Protocol.NetworkEnvelope.GetObjectData |
( |
SerializationInfo |
info, |
|
|
StreamingContext |
context |
|
) |
| |
|
inlineprivate |
Definition at line 68 of file NetworkEnvelope.cs.
69 info.AddValue(NetworkEnvelopeMetadataKeys.DispatchId,
DispatchId);
70 info.AddValue(NetworkEnvelopeMetadataKeys.IssueDate,
IssueDate.Ticks);
71 info.AddValue(
"Error",
Error);
72 info.AddValue(
"Message",
Message);
void Deveel.Data.Protocol.NetworkEnvelope.SetMetadata |
( |
string |
key, |
|
|
object |
value |
|
) |
| |
|
inlineprotected |
readonly Dictionary<string, object> Deveel.Data.Protocol.NetworkEnvelope.metadata |
|
private |
int Deveel.Data.Protocol.NetworkEnvelope.DispatchId |
|
getset |
DateTime Deveel.Data.Protocol.NetworkEnvelope.IssueDate |
|
getset |
IMessage Deveel.Data.Protocol.NetworkEnvelope.Message |
|
getprivate set |
IDictionary<string, object> IMessageEnvelope. Deveel.Data.Protocol.NetworkEnvelope.Metadata |
|
getprivate |
The documentation for this class was generated from the following file:
- /var/calculate/remote/distfiles/egit-src/deveeldb.git/src/deveeldb/Deveel.Data.Protocol/NetworkEnvelope.cs