// ********************************************************************** // // Copyright (c) 2003-2017 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. // // ********************************************************************** namespace Ice { /// /// Interface for servants using the tie mapping. /// public interface TieBase { /// /// Returns the delegate for this tie. /// /// The delegate. object ice_delegate(); /// /// Returns the delegate for this tie. /// /// The delegate. void ice_delegate(object o); } }