summaryrefslogtreecommitdiff
path: root/cs/src/Ice/InputStream.cs
diff options
context:
space:
mode:
Diffstat (limited to 'cs/src/Ice/InputStream.cs')
-rw-r--r--cs/src/Ice/InputStream.cs60
1 files changed, 30 insertions, 30 deletions
diff --git a/cs/src/Ice/InputStream.cs b/cs/src/Ice/InputStream.cs
index 33d23e9cbfb..792c200f80c 100644
--- a/cs/src/Ice/InputStream.cs
+++ b/cs/src/Ice/InputStream.cs
@@ -11,53 +11,53 @@ namespace Ice
{
public interface InputStream
{
- Communicator communicator();
+ Communicator communicator();
- void sliceObjects(bool slice);
+ void sliceObjects(bool slice);
- bool readBool();
- bool[] readBoolSeq();
+ bool readBool();
+ bool[] readBoolSeq();
- byte readByte();
- byte[] readByteSeq();
+ byte readByte();
+ byte[] readByteSeq();
- short readShort();
- short[] readShortSeq();
+ short readShort();
+ short[] readShortSeq();
- int readInt();
- int[] readIntSeq();
+ int readInt();
+ int[] readIntSeq();
- long readLong();
- long[] readLongSeq();
+ long readLong();
+ long[] readLongSeq();
- float readFloat();
- float[] readFloatSeq();
+ float readFloat();
+ float[] readFloatSeq();
- double readDouble();
- double[] readDoubleSeq();
+ double readDouble();
+ double[] readDoubleSeq();
- string readString();
- string[] readStringSeq();
+ string readString();
+ string[] readStringSeq();
- int readSize();
+ int readSize();
- ObjectPrx readProxy();
+ ObjectPrx readProxy();
- void readObject(ReadObjectCallback cb);
+ void readObject(ReadObjectCallback cb);
- string readTypeId();
+ string readTypeId();
- void throwException();
+ void throwException();
- void startSlice();
- void endSlice();
- void skipSlice();
+ void startSlice();
+ void endSlice();
+ void skipSlice();
- void startEncapsulation();
- void endEncapsulation();
+ void startEncapsulation();
+ void endEncapsulation();
- void readPendingObjects();
+ void readPendingObjects();
- void destroy();
+ void destroy();
}
}