System.Runtime.Remoting.RemotingServices.AreChannelDataElementsNull C# (CSharp) Method

AreChannelDataElementsNull() private static method

private static AreChannelDataElementsNull ( Object channelData ) : bool
channelData Object
return bool
        private static bool AreChannelDataElementsNull(Object[] channelData)
        {
            foreach(Object o in channelData)
            {
                if (o != null)
                    return false;
            }

            return true;

        }
RemotingServices