diff options
Diffstat (limited to 'csharp/test/IceBox/configuration/TestI.cs')
-rw-r--r-- | csharp/test/IceBox/configuration/TestI.cs | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/csharp/test/IceBox/configuration/TestI.cs b/csharp/test/IceBox/configuration/TestI.cs new file mode 100644 index 00000000000..35eccba593a --- /dev/null +++ b/csharp/test/IceBox/configuration/TestI.cs @@ -0,0 +1,32 @@ +// ********************************************************************** +// +// 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. +// +// ********************************************************************** + +using Test; + +public class TestI : TestIntfDisp_ +{ + public TestI(string[] args) + { + _args = args; + } + + public override string + getProperty(string name, Ice.Current current) + { + return current.adapter.getCommunicator().getProperties().getProperty(name); + } + + public override string[] + getArgs(Ice.Current current) + { + return _args; + } + + private string[] _args; +} |