summaryrefslogtreecommitdiff
path: root/cs/src/Ice/Util.cs
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2012-04-25 11:19:13 +0200
committerBenoit Foucher <benoit@zeroc.com>2012-04-25 11:19:13 +0200
commit7e874613ff22bedf988273b51a15ab937f01169f (patch)
tree115a92a902f80fcc6252c5fac6a957ecc548b82c /cs/src/Ice/Util.cs
parentFixed copyrights (diff)
downloadice-7e874613ff22bedf988273b51a15ab937f01169f.tar.bz2
ice-7e874613ff22bedf988273b51a15ab937f01169f.tar.xz
ice-7e874613ff22bedf988273b51a15ab937f01169f.zip
Merged Silverlight support
Diffstat (limited to 'cs/src/Ice/Util.cs')
-rw-r--r--cs/src/Ice/Util.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/cs/src/Ice/Util.cs b/cs/src/Ice/Util.cs
index 017db4bdf12..f9d11aac99f 100644
--- a/cs/src/Ice/Util.cs
+++ b/cs/src/Ice/Util.cs
@@ -506,6 +506,7 @@ namespace IceInternal
return new ProtocolPluginFacadeI(communicator);
}
+#if !SILVERLIGHT
public static System.Threading.ThreadPriority stringToThreadPriority(string s)
{
if(String.IsNullOrEmpty(s))
@@ -538,5 +539,16 @@ namespace IceInternal
}
return ThreadPriority.Normal;
}
+#endif
+ }
+}
+
+#if SILVERLIGHT
+namespace System
+{
+ public interface ICloneable
+ {
+ Object Clone();
}
}
+#endif