Machine.UrlStrong.Translation.Parsing.ParseResultBuilder.OnNamespace C# (CSharp) Method

OnNamespace() public method

public OnNamespace ( string value ) : void
value string
return void
    public void OnNamespace(string value)
    {
      if (!String.IsNullOrEmpty(_namespace))
      {
        throw new Exception("You can only have one namespace per url file.");
      }
      _namespace = value;
    }