summaryrefslogtreecommitdiff
path: root/csharp/test/Ice/exceptions/ServantLocatorI.cs
diff options
context:
space:
mode:
Diffstat (limited to 'csharp/test/Ice/exceptions/ServantLocatorI.cs')
-rw-r--r--csharp/test/Ice/exceptions/ServantLocatorI.cs25
1 files changed, 25 insertions, 0 deletions
diff --git a/csharp/test/Ice/exceptions/ServantLocatorI.cs b/csharp/test/Ice/exceptions/ServantLocatorI.cs
new file mode 100644
index 00000000000..88b8b527afb
--- /dev/null
+++ b/csharp/test/Ice/exceptions/ServantLocatorI.cs
@@ -0,0 +1,25 @@
+// **********************************************************************
+//
+// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved.
+//
+// This copy of Ice is licensed to you under the terms described in the
+// ICE_LICENSE file included in this distribution.
+//
+// **********************************************************************
+
+public sealed class ServantLocatorI : Ice.ServantLocator
+{
+ public Ice.Object locate(Ice.Current curr, out System.Object cookie)
+ {
+ cookie = null;
+ return null;
+ }
+
+ public void finished(Ice.Current curr, Ice.Object servant, System.Object cookie)
+ {
+ }
+
+ public void deactivate(string category)
+ {
+ }
+}