download NameValuePair.cs
Language: C#
LOC: 24
Project Info
sourcecompiler - A .NET project to automat...e ...(sourcecompiler)
Server: Google
Type: svn
...iler\trunk\HtmlAgilityPack\
   crc32.cs
   EncodingFoundException.cs
   HtmlAgilityPack.csproj
   HtmlAttribute.cs
   HtmlAttributeCollection.cs
   HtmlCmdLine.cs
   HtmlCommentNode.cs
   HtmlConsoleListener.cs
   HtmlDocument.cs
   HtmlElementFlag.cs
   HtmlEntity.cs
   HtmlNameTable.cs
   HtmlNode.cs
   HtmlNodeCollection.cs
   HtmlNodeNavigator.cs
   HtmlNodeType.cs
   HtmlParseError.cs
   HtmlParseErrorCode.cs
   HtmlTextNode.cs
   HtmlWeb.cs
   HtmlWebException.cs
   IOLibrary.cs
   MixedCodeDocument.cs
   ...DocumentCodeFragment.cs
   ...CodeDocumentFragment.cs
   ...DocumentFragmentList.cs
   ...DocumentFragmentType.cs
   ...DocumentTextFragment.cs
   NameValuePair.cs
   NameValuePairList.cs

// HtmlAgilityPack V1.0 - Simon Mourier <simon underscore mourier at hotmail dot com>
using System;

namespace HtmlAgilityPack
{
    internal class NameValuePair
    {
        internal readonly string Name;
        internal string Value;

        internal NameValuePair()
        {
        }

        internal NameValuePair(string name)
            :
            this()
        {
            Name = name;
        }

        internal NameValuePair(string name, string value)
            :
            this(name)
        {
            Value = value;
        }
    }

}

About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us