Paralect.ServiceBus.TransportEndpointAddress.GetFormatName C# (CSharp) Method

GetFormatName() public method

public GetFormatName ( ) : String
return String
        public String GetFormatName()
        {
            // MSMQ format name:
            // FormatName:Direct=OS:machinename\\private$\\queue
            return String.Format(@"FormatName:DIRECT=OS:{0}\private$\{1}", ComputerName, Name);
        }