blob: 3c0abbb867e1d2f933c04cc0bad7d04cc3b6ac24 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
namespace Ice
{
/// <summary>
/// Unknown sliced value holds an instance of an unknown Slice class type.
/// </summary>
public sealed class UnknownSlicedValue : Value
{
/// <summary>
/// Represents an instance of a Slice class type having the given Slice type.
/// </summary>
/// <param name="unknownTypeId">The Slice type ID of the unknown object.</param>
public UnknownSlicedValue(string unknownTypeId)
{
_unknownTypeId = unknownTypeId;
}
/// <summary>
/// Returns the sliced data if the value has a preserved-slice base class and has been sliced during
/// un-marshaling of the value, null is returned otherwise.
/// </summary>
/// <returns>The sliced data or null.</returns>
public override SlicedData ice_getSlicedData()
{
return _slicedData;
}
/// <summary>
/// Returns the Slice type ID associated with this object.
/// </summary>
/// <returns>The type ID.</returns>
public override string ice_id()
{
return _unknownTypeId;
}
public override void iceWrite(OutputStream ostr)
{
ostr.startValue(_slicedData);
ostr.endValue();
}
public override void iceRead(InputStream istr)
{
istr.startValue();
_slicedData = istr.endValue(true);
}
private string _unknownTypeId;
private SlicedData _slicedData;
}
}
|