using System;
using AppModule.InterProcessComm;
namespace AppModule.NamedPipes {
#region Comments
///
/// Holds the operating system native handle and the current state of the pipe connection.
///
#endregion
public sealed class PipeHandle {
#region Comments
///
/// The operating system native handle.
///
#endregion
public IntPtr Handle;
#region Comments
///
/// The current state of the pipe connection.
///
#endregion
public InterProcessConnectionState State;
#region Comments
///
/// Creates a PipeHandle instance using the passed native handle.
///
/// The native handle.
#endregion
public PipeHandle (int hnd) {
this.Handle = new IntPtr(hnd);
this.State = InterProcessConnectionState.NotSet;
}
#region Comments
///
/// Creates a PipeHandle instance using the provided native handle and state.
///
/// The native handle.
/// The state of the pipe connection.
#endregion
public PipeHandle (int hnd, InterProcessConnectionState state) {
this.Handle = new IntPtr(hnd);
this.State = state;
}
#region Comments
///
/// Creates a PipeHandle instance with an invalid native handle.
///
#endregion
public PipeHandle () {
this.Handle = new IntPtr(NamedPipeNative.INVALID_HANDLE_VALUE);
this.State = InterProcessConnectionState.NotSet;
}
}
}