CodeSharp.EventSourcing.Address.SubScope C# (CSharp) Method

SubScope() public method

Creates a new Address whose Queue is derived from the Queue of the existing Address together with the provided qualifier. For example: queue.qualifier@machine
public SubScope ( string qualifier ) : Address
qualifier string
return Address
        public Address SubScope(string qualifier)
        {
            return new Address(Queue + "." + qualifier, Machine);
        }