Exemplo n.º 1
0
 public static IZonePushPrx read(Ice.InputStream istr)
 {
     Ice.ObjectPrx proxy = istr.readProxy();
     if (proxy != null)
     {
         IZonePushPrxHelper result = new IZonePushPrxHelper();
         result.iceCopyFrom(proxy);
         return(result);
     }
     return(null);
 }
Exemplo n.º 2
0
            public static IZonePushPrx uncheckedCast(Ice.ObjectPrx b, string f)
            {
                if (b == null)
                {
                    return(null);
                }
                Ice.ObjectPrx      bb = b.ice_facet(f);
                IZonePushPrxHelper h  = new IZonePushPrxHelper();

                h.iceCopyFrom(bb);
                return(h);
            }
Exemplo n.º 3
0
            public static IZonePushPrx uncheckedCast(Ice.ObjectPrx b)
            {
                if (b == null)
                {
                    return(null);
                }
                IZonePushPrx r = b as IZonePushPrx;

                if (r == null)
                {
                    IZonePushPrxHelper h = new IZonePushPrxHelper();
                    h.iceCopyFrom(b);
                    r = h;
                }
                return(r);
            }
Exemplo n.º 4
0
            public static IZonePushPrx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary <string, string> ctx)
            {
                if (b == null)
                {
                    return(null);
                }
                IZonePushPrx r = b as IZonePushPrx;

                if ((r == null) && b.ice_isA(ice_staticId(), ctx))
                {
                    IZonePushPrxHelper h = new IZonePushPrxHelper();
                    h.iceCopyFrom(b);
                    r = h;
                }
                return(r);
            }
Exemplo n.º 5
0
 public static IZonePushPrx 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(ice_staticId(), ctx))
         {
             IZonePushPrxHelper h = new IZonePushPrxHelper();
             h.iceCopyFrom(bb);
             return(h);
         }
     }
     catch (Ice.FacetNotExistException)
     {
     }
     return(null);
 }
Exemplo n.º 6
0
 public static IZonePushPrx checkedCast(Ice.ObjectPrx b, string f)
 {
     if (b == null)
     {
         return(null);
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     try
     {
         if (bb.ice_isA(ice_staticId()))
         {
             IZonePushPrxHelper h = new IZonePushPrxHelper();
             h.iceCopyFrom(bb);
             return(h);
         }
     }
     catch (Ice.FacetNotExistException)
     {
     }
     return(null);
 }