System.Runtime.Remoting.RemotingServices.IsOneWay C# (CSharp) Méthode

IsOneWay() private méthode

private IsOneWay ( MethodBase method ) : bool
method MethodBase
Résultat bool
        public static bool IsOneWay(MethodBase method)
        {
            if (method == null)
                return false;
                
            RemotingMethodCachedData cache = 
                InternalRemotingServices.GetReflectionCachedData(method);
               
            return cache.IsOneWayMethod();       
        }
RemotingServices