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