// // Copyright (c) ZeroC, Inc. All rights reserved. // 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); } }