Beispiel #1
0
 public static MidaxIcePrx uncheckedCast(Ice.ObjectPrx b, string f)
 {
     if(b == null)
     {
         return null;
     }
     Ice.ObjectPrx bb = b.ice_facet(f);
     MidaxIcePrxHelper h = new MidaxIcePrxHelper();
     h.copyFrom__(bb);
     return h;
 }
Beispiel #2
0
 public static MidaxIcePrx read__(IceInternal.BasicStream is__)
 {
     Ice.ObjectPrx proxy = is__.readProxy();
     if(proxy != null)
     {
         MidaxIcePrxHelper result = new MidaxIcePrxHelper();
         result.copyFrom__(proxy);
         return result;
     }
     return null;
 }
Beispiel #3
0
 public static MidaxIcePrx uncheckedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     MidaxIcePrx r = b as MidaxIcePrx;
     if(r == null)
     {
         MidaxIcePrxHelper h = new MidaxIcePrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Beispiel #4
0
 public static MidaxIcePrx 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))
         {
             MidaxIcePrxHelper h = new MidaxIcePrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }
Beispiel #5
0
 public static MidaxIcePrx 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()))
         {
             MidaxIcePrxHelper h = new MidaxIcePrxHelper();
             h.copyFrom__(bb);
             return h;
         }
     }
     catch(Ice.FacetNotExistException)
     {
     }
     return null;
 }
Beispiel #6
0
 public static MidaxIcePrx checkedCast(Ice.ObjectPrx b, _System.Collections.Generic.Dictionary<string, string> ctx)
 {
     if(b == null)
     {
         return null;
     }
     MidaxIcePrx r = b as MidaxIcePrx;
     if((r == null) && b.ice_isA(ice_staticId(), ctx))
     {
         MidaxIcePrxHelper h = new MidaxIcePrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }
Beispiel #7
0
 public static MidaxIcePrx checkedCast(Ice.ObjectPrx b)
 {
     if(b == null)
     {
         return null;
     }
     MidaxIcePrx r = b as MidaxIcePrx;
     if((r == null) && b.ice_isA(ice_staticId()))
     {
         MidaxIcePrxHelper h = new MidaxIcePrxHelper();
         h.copyFrom__(b);
         r = h;
     }
     return r;
 }