SevenSoftware.Windows.InstanceAwareApplication.GetPipeUri C# (CSharp) Method

GetPipeUri() static private method

Gets the Uri of the pipe used for inter-process communication.
static private GetPipeUri ( string applicationPath ) : Uri
applicationPath string The application unique path, used to define the Uri pipe.
return System.Uri
        static Uri GetPipeUri(string applicationPath)
        {
            return new Uri(string.Format("net.pipe://localhost/{0}/", applicationPath));
        }