represents fatal protocol errors, which normally cause the connection to be aborted
Inheritance: System.Exception
コード例 #1
0
 protected void sendProtocolError(ProtocolError exc)
 {
     Packers.Int8.pack(REPLY_PROTOCOL_ERROR, transport);
     Packers.Str.pack(exc.ToString(), transport);
 }
コード例 #2
0
ファイル: Protocol.cs プロジェクト: tomerfiliba/agnos
 protected void sendProtocolError(ProtocolError exc)
 {
     Packers.Int8.pack (REPLY_PROTOCOL_ERROR, transport);
     Packers.Str.pack (exc.ToString (), transport);
 }