Updates to DropDownPanel, Baseline, & Controls
This commit is contained in:
@@ -3,11 +3,8 @@
|
||||
* Volian Enterprises - Proprietary Information - DO NOT COPY OR DISTRIBUTE
|
||||
*********************************************************************************************/
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO.Pipes;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
//using System.Threading.Tasks;
|
||||
|
||||
namespace Volian.Pipe.Library
|
||||
{
|
||||
@@ -15,18 +12,12 @@ namespace Volian.Pipe.Library
|
||||
public delegate void DelegateMessage(string Reply);
|
||||
public class PipeServer
|
||||
{
|
||||
private string _Name;
|
||||
public string Name
|
||||
public string Name { get; set; }
|
||||
public PipeServer(string name)
|
||||
{
|
||||
get { return _Name; }
|
||||
set { _Name = value; }
|
||||
}
|
||||
public PipeServer(string name)
|
||||
{
|
||||
_Name = name;
|
||||
Name = name;
|
||||
}
|
||||
public event DelegateMessage PipeMessage;
|
||||
string _pipeName;
|
||||
public void Listen()
|
||||
{
|
||||
try
|
||||
@@ -66,9 +57,7 @@ namespace Volian.Pipe.Library
|
||||
// Kill original sever and create new wait server
|
||||
pipeServer.Close();
|
||||
pipeServer = null;
|
||||
//pipeServer = new NamedPipeServerStream(_pipeName, PipeDirection.In, 1, PipeTransmissionMode.Byte, PipeOptions.Asynchronous);
|
||||
//// Recursively wait for the connection again and again....
|
||||
//pipeServer.BeginWaitForConnection(new AsyncCallback(WaitForConnectionCallBack), pipeServer);
|
||||
// Recursively wait for the connection again and again....
|
||||
Listen();
|
||||
}
|
||||
catch
|
||||
|
||||
Reference in New Issue
Block a user