MoreInternals.Model.UrlValue.Bind C# (CSharp) Method

Bind() public method

public Bind ( Scope scope ) : Value
scope Scope
return Value
        public override Value Bind(Scope scope)
        {
            var ret = new UrlValue(UrlPath.Bind(scope));
            ret.Start = this.Start;
            ret.Start = this.Stop;
            ret.FilePath = this.FilePath;

            return ret;
        }