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

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

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

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