Exemplo n.º 1
0
        public static DebugServerError debugserver_client_send_command(DebugServerClientHandle client, DebugServerCommandHandle command, out string response)
        {
            System.Runtime.InteropServices.ICustomMarshaler responseMarshaler = NativeStringMarshaler.GetInstance(null);
            System.IntPtr    responseNative = System.IntPtr.Zero;
            DebugServerError returnValue    = DebugServerNativeMethods.debugserver_client_send_command(client, command, out responseNative);

            response = ((string)responseMarshaler.MarshalNativeToManaged(responseNative));
            responseMarshaler.CleanUpNativeData(responseNative);
            return(returnValue);
        }
Exemplo n.º 2
0
 /// <summary>
 /// Sends a command to the debugserver service.
 /// </summary>
 /// <param name="client">
 /// The debugserver client
 /// </param>
 /// <param name="command">
 /// Command to process and send
 /// </param>
 /// <param name="response">
 /// Response received for the command (can be NULL to ignore)
 /// </param>
 /// <returns>
 /// DEBUGSERVER_E_SUCCESS on success,
 /// DEBUGSERVER_E_INVALID_ARG when client or command is NULL
 /// </returns>
 public virtual DebugServerError debugserver_client_send_command(DebugServerClientHandle client, DebugServerCommandHandle command, out string response)
 {
     return(DebugServerNativeMethods.debugserver_client_send_command(client, command, out response));
 }