blob: de7a136fde5944b1f220b1ff772af5d87e859a1e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace Ice
{
namespace objects
{
public sealed class UnexpectedObjectExceptionTestI : Ice.Blobject
{
public override bool ice_invoke(byte[] inParams, out byte[] outParams, Ice.Current current)
{
var communicator = current.adapter.getCommunicator();
var @out = new Ice.OutputStream(communicator);
@out.startEncapsulation(current.encoding, Ice.FormatType.DefaultFormat);
var ae = new Test.AlsoEmpty();
@out.writeValue(ae);
@out.writePendingValues();
@out.endEncapsulation();
outParams = @out.finished();
return true;
}
}
}
}
|