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

OnClassName() public method

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