System.Runtime.Serialization.Formatters.Binary.BinaryMethodCallMessage.BinaryMethodCallMessage C# (CSharp) Method

BinaryMethodCallMessage() private method

private BinaryMethodCallMessage ( String uri, String methodName, String typeName, Type instArgs, Object args, Object methodSignature, LogicalCallContext callContext, Object properties ) : System
uri String
methodName String
typeName String
instArgs System.Type
args Object
methodSignature Object
callContext System.Runtime.Remoting.Messaging.LogicalCallContext
properties Object
return System
        internal BinaryMethodCallMessage(String uri, String methodName, String typeName, Type[] instArgs, Object[] args, Object methodSignature, LogicalCallContext callContext, Object[] properties)
        {
            _methodName = methodName;
            _typeName = typeName;
            //_uri = uri;
            if (args == null)
                args = new Object[0];

            _inargs = args;
            _args = args;
            _instArgs = instArgs;
            _methodSignature = methodSignature;
            if (callContext == null)
                _logicalCallContext = new LogicalCallContext();
            else
                _logicalCallContext = callContext;

            _properties = properties;

        }