示例#1
0
 public static BitmapProviderPrx read__(IceInternal.BasicStream is__)
 {
     Ice.ObjectPrx proxy = is__.readProxy();
     if (proxy != null)
     {
         BitmapProviderPrxHelper result = new BitmapProviderPrxHelper();
         result.copyFrom__(proxy);
         return(result);
     }
     return(null);
 }
示例#2
0
        public static BitmapProviderPrx uncheckedCast(Ice.ObjectPrx b, string f)
        {
            if (b == null)
            {
                return(null);
            }
            Ice.ObjectPrx           bb = b.ice_facet(f);
            BitmapProviderPrxHelper h  = new BitmapProviderPrxHelper();

            h.copyFrom__(bb);
            return(h);
        }
示例#3
0
        public static BitmapProviderPrx uncheckedCast(Ice.ObjectPrx b)
        {
            if (b == null)
            {
                return(null);
            }
            BitmapProviderPrx r = b as BitmapProviderPrx;

            if (r == null)
            {
                BitmapProviderPrxHelper h = new BitmapProviderPrxHelper();
                h.copyFrom__(b);
                r = h;
            }
            return(r);
        }
示例#4
0
        public static BitmapProviderPrx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary <string, string> ctx)
        {
            if (b == null)
            {
                return(null);
            }
            BitmapProviderPrx r = b as BitmapProviderPrx;

            if ((r == null) && b.ice_isA(ice_staticId(), ctx))
            {
                BitmapProviderPrxHelper h = new BitmapProviderPrxHelper();
                h.copyFrom__(b);
                r = h;
            }
            return(r);
        }
示例#5
0
 public static BitmapProviderPrx 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))
         {
             BitmapProviderPrxHelper h = new BitmapProviderPrxHelper();
             h.copyFrom__(bb);
             return(h);
         }
     }
     catch (Ice.FacetNotExistException)
     {
     }
     return(null);
 }
示例#6
0
 public static BitmapProviderPrx 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()))
         {
             BitmapProviderPrxHelper h = new BitmapProviderPrxHelper();
             h.copyFrom__(bb);
             return(h);
         }
     }
     catch (Ice.FacetNotExistException)
     {
     }
     return(null);
 }