public static ListenerPrx checkedCast(Ice.ObjectPrx b) { if(b == null) { return null; } ListenerPrx r = b as ListenerPrx; if((r == null) && b.ice_isA("::Chat::Listener")) { ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(b); r = h; } return r; }
public static ListenerPrx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary<string, string> ctx) { if(b == null) { return null; } ListenerPrx r = b as ListenerPrx; if((r == null) && b.ice_isA("::Chat::Listener", ctx)) { ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(b); r = h; } return r; }
public static ListenerPrx uncheckedCast(Ice.ObjectPrx b, string f) { if(b == null) { return null; } Ice.ObjectPrx bb = b.ice_facet(f); ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(bb); return h; }
public static ListenerPrx uncheckedCast(Ice.ObjectPrx b) { if(b == null) { return null; } ListenerPrx r = b as ListenerPrx; if(r == null) { ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(b); r = h; } return r; }
public static ListenerPrx read__(IceInternal.BasicStream is__) { Ice.ObjectPrx proxy = is__.readProxy(); if(proxy != null) { ListenerPrxHelper result = new ListenerPrxHelper(); result.copyFrom__(proxy); return result; } return null; }
public static ListenerPrx checkedCast(Ice.ObjectPrx b, string f, _System.Collections.Generic.Dictionary<string, string> ctx) { if(b == null) { return null; } Ice.ObjectPrx bb = b.ice_facet(f); try { if(bb.ice_isA("::Chat::Listener", ctx)) { ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(bb); return h; } } catch(Ice.FacetNotExistException) { } return null; }
public static ListenerPrx checkedCast(Ice.ObjectPrx b, string f) { if(b == null) { return null; } Ice.ObjectPrx bb = b.ice_facet(f); try { if(bb.ice_isA("::Chat::Listener")) { ListenerPrxHelper h = new ListenerPrxHelper(); h.copyFrom__(bb); return h; } } catch(Ice.FacetNotExistException) { } return null; }