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