QueryStringParameter.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / QueryStringParameter.cs / 1 / QueryStringParameter.cs

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

namespace System.Web.UI.WebControls { 
 
    using System;
    using System.ComponentModel; 
    using System.Security.Permissions;


 
    /// 
    /// Represents a Parameter that gets its value from the application's QueryString parameters. 
    ///  
    [
    DefaultProperty("QueryStringField"), 
    ]
    [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)]
    public class QueryStringParameter : Parameter { 

 
        ///  
        /// Creates an instance of the QueryStringParameter class.
        ///  
        public QueryStringParameter() {
        }

 
        /// 
        /// Creates an instance of the QueryStringParameter class with the specified parameter name and QueryString field. 
        ///  
        public QueryStringParameter(string name, string queryStringField) : base(name) {
            QueryStringField = queryStringField; 
        }


        ///  
        /// Creates an instance of the QueryStringParameter class with the specified parameter name, type, and QueryString field.
        ///  
        public QueryStringParameter(string name, TypeCode type, string queryStringField) : base(name, type) { 
            QueryStringField = queryStringField;
        } 


        /// 
        /// Used to clone a parameter. 
        /// 
        protected QueryStringParameter(QueryStringParameter original) : base(original) { 
            QueryStringField = original.QueryStringField; 
        }
 


        /// 
        /// The name of the QueryString parameter to get the value from. 
        /// 
        [ 
        DefaultValue(""), 
        WebCategory("Parameter"),
        WebSysDescription(SR.QueryStringParameter_QueryStringField), 
        ]
        public string QueryStringField {
            get {
                object o = ViewState["QueryStringField"]; 
                if (o == null)
                    return String.Empty; 
                return (string)o; 
            }
            set { 
                if (QueryStringField != value) {
                    ViewState["QueryStringField"] = value;
                    OnParameterChanged();
                } 
            }
        } 
 

        ///  
        /// Creates a new QueryStringParameter that is a copy of this QueryStringParameter.
        /// 
        protected override Parameter Clone() {
            return new QueryStringParameter(this); 
        }
 
 
        /// 
        /// Returns the updated value of the parameter. 
        /// 
        protected override object Evaluate(HttpContext context, Control control) {
            if (context == null || context.Request == null) {
                return null; 
            }
            return context.Request.QueryString[QueryStringField]; 
        } 
    }
} 



                        

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