System.Web.Mvc.ItemRegistrar.Add C# (CSharp) Method

Add() public method

public Add ( string url ) : ItemRegistrar
url string
return ItemRegistrar
        public ItemRegistrar Add(string url)
        {
            if (!_items.Contains(url))
                _items.Add(url);

            return this;
        }