Updates to DropDownPanel, Baseline, & Controls
This commit is contained in:
@@ -3,31 +3,19 @@
|
||||
* 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
|
||||
{
|
||||
public class PipeClient
|
||||
{
|
||||
private string _Name;
|
||||
public string Name
|
||||
public string Name { get; set; }
|
||||
|
||||
public int TimeOut { get; set; } = 1000;
|
||||
public PipeClient(string name)
|
||||
{
|
||||
get { return _Name; }
|
||||
set { _Name = value; }
|
||||
}
|
||||
private int _TimeOut = 1000;
|
||||
public int TimeOut
|
||||
{
|
||||
get { return _TimeOut; }
|
||||
set { _TimeOut = value; }
|
||||
}
|
||||
public PipeClient(string name)
|
||||
{
|
||||
_Name = name;
|
||||
Name = name;
|
||||
}
|
||||
public void Send(string msg)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user