UriTemplateVariablePathSegment.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / UriTemplateVariablePathSegment.cs / 1 / UriTemplateVariablePathSegment.cs

                            //---------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------

namespace System 
{
    using System.Collections.Specialized; 
    using System.ServiceModel; 
    using System.ServiceModel.Web;
    using System.Text; 

    class UriTemplateVariablePathSegment : UriTemplatePathSegment
    {
        readonly string varName; 

        public UriTemplateVariablePathSegment(string originalSegment, bool endsWithSlash, string varName) 
            : base(originalSegment, UriTemplatePartType.Variable, endsWithSlash) 
        {
            Fx.Assert(!string.IsNullOrEmpty(varName), "bad variable segment"); 
            this.varName = varName;
        }

        public string VarName 
        {
            get 
            { 
                return this.varName;
            } 
        }
        public override void Bind(string[] values, ref int valueIndex, StringBuilder path)
        {
            Fx.Assert(valueIndex < values.Length, "Not enough values to bind"); 
            if (this.EndsWithSlash)
            { 
                path.AppendFormat("{0}/", values[valueIndex++]); 
            }
            else 
            {
                path.Append(values[valueIndex++]);
            }
        } 

        public override bool IsEquivalentTo(UriTemplatePathSegment other, bool ignoreTrailingSlash) 
        { 
            if (other == null)
            { 
                Fx.Assert("why would we ever call this?");
                return false;
            }
            if (!ignoreTrailingSlash && (this.EndsWithSlash != other.EndsWithSlash)) 
            {
                return false; 
            } 
            return (other.Nature == UriTemplatePartType.Variable);
        } 
        public override bool IsMatch(UriTemplateLiteralPathSegment segment, bool ignoreTrailingSlash)
        {
            if (!ignoreTrailingSlash && (this.EndsWithSlash != segment.EndsWithSlash))
            { 
                return false;
            } 
            return (!segment.IsNullOrEmpty()); 
        }
        public override void Lookup(string segment, NameValueCollection boundParameters) 
        {
            Fx.Assert(!string.IsNullOrEmpty(segment), "How can that be? Lookup is expected to be called after IsMatch");
            boundParameters.Add(this.varName, segment);
        } 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK