FloatingQueue.Server.Core.NodeConfiguration.CreateProxy C# (CSharp) Method

CreateProxy() public method

public CreateProxy ( ) : void
return void
        public void CreateProxy()
        {
            if (Proxy != null)
                throw new InvalidOperationException("Proxy cannot be be created more than 1 time");
            if (!IsSelf)
                Proxy = new SafeInternalQueueServiceProxy(InternalAddress);
        }