diff options
Diffstat (limited to 'csharp/src/Ice/Value.cs')
-rw-r--r-- | csharp/src/Ice/Value.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/csharp/src/Ice/Value.cs b/csharp/src/Ice/Value.cs index b3c9924811e..6eb5ad1acef 100644 --- a/csharp/src/Ice/Value.cs +++ b/csharp/src/Ice/Value.cs @@ -8,6 +8,7 @@ // ********************************************************************** using System; +using System.ComponentModel; namespace Ice { @@ -50,6 +51,7 @@ namespace Ice { } + [EditorBrowsable(EditorBrowsableState.Never)] public virtual void iceWrite(OutputStream ostr) { ostr.startValue(null); @@ -57,6 +59,7 @@ namespace Ice ostr.endValue(); } + [EditorBrowsable(EditorBrowsableState.Never)] public virtual void iceRead(InputStream istr) { istr.startValue(); @@ -64,10 +67,12 @@ namespace Ice istr.endValue(false); } + [EditorBrowsable(EditorBrowsableState.Never)] protected virtual void iceWriteImpl(OutputStream ostr) { } + [EditorBrowsable(EditorBrowsableState.Never)] protected virtual void iceReadImpl(InputStream istr) { } @@ -95,12 +100,14 @@ namespace Ice return _id; } + [EditorBrowsable(EditorBrowsableState.Never)] protected override void iceWriteImpl(OutputStream ostr) { ostr.startSlice(ice_id(), -1, true); ostr.endSlice(); } + [EditorBrowsable(EditorBrowsableState.Never)] protected override void iceReadImpl(InputStream istr) { istr.startSlice(); |