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

InitializeLocalAddress() public static method

Sets the address of this endpoint. Will throw an exception if overwriting a previous value (but value will still be set).
public static InitializeLocalAddress ( string address ) : void
address string
return void
        public static void InitializeLocalAddress(string address)
        {
            Local = Parse(address);
        }