MoreInternals.Model.QuotedStringValue.Bind C# (CSharp) Метод

Bind() публичный Метод

public Bind ( Scope scope ) : Value
scope Scope
Результат Value
        public override Value Bind(Scope scope)
        {
            var @base = (QuotedStringValue)base.Bind(scope);

            @base.EvaluateMap = @base.EvaluateMap.Bind(scope);

            return @base;
        }