Пример #1
0
        public static void ClientTarget_load(Page p)
        {
            ClientTargetSection sec          = (ClientTargetSection)WebConfigurationManager.GetSection("system.web/clientTarget");
            ClientTarget        clientTarget = sec.ClientTargets ["downlevel"];

            if (clientTarget == null)
            {
                Assert.Fail("ClientTarget Section: downlevel");
            }
        }
        public void EqualsAndHashCode()
        {
            ClientTarget c1, c2;

            c1 = new ClientTarget("alias", "userAgent");
            c2 = new ClientTarget("alias", "userAgent");

            Assert.IsTrue(c1.Equals(c2), "A1");
            Assert.AreEqual(c1.GetHashCode(), c2.GetHashCode(), "A2");
        }
Пример #3
0
    protected void Page_Load(object sender, EventArgs e)
    {
        AppCode appCode = new AppCode();

        ControlsMethod();
        Cache.Count.ToString();
        Cache["key"] = "value";
        ClientTarget.ToString();
        Page.IsPostBack.ToString();
        Page.IsCallback.ToString();
        Request.Browser.Type.ToString();
        Request.Form.ToString();
        Request.QueryString.ToString();

        Button1.BackColor = Color.Cyan;
        System.Web.UI.WebControls.WebControl webControl = new System.Web.UI.WebControls.WebControl(HtmlTextWriterTag.Base);
    }
 void SaveExecute(object param)
 {
     try
     {
         if (currentClientDef.IsAdding)
         {
             ClientTarget.Add(currentClientDef);
         }
         else
         {
             ClientTarget.Update(currentClientDef);
         }
         currentClientDef.Modified = false;
         this.ClientDefListViewModel.EnablePicker = true;
     }
     catch (Exception x)
     {
         _view.ShowMsg(x.ToString());
     }
 }
	public void Add(ClientTarget clientTarget) {}
	public void Remove(ClientTarget clientTarget) {}
Пример #7
0
		internal override void ProcessMainAttributes (IDictionary atts)
		{
			// note: the 'enableSessionState' configuration property is
			// processed in a case-sensitive manner while the page-level
			// attribute is processed case-insensitive
			string enabless = GetString (atts, "EnableSessionState", null);
			if (enabless != null) {
				if (String.Compare (enabless, "readonly", true, Helpers.InvariantCulture) == 0)
					enableSessionState = PagesEnableSessionState.ReadOnly;
				else if (String.Compare (enabless, "true", true, Helpers.InvariantCulture) == 0)
					enableSessionState = PagesEnableSessionState.True;
				else if (String.Compare (enabless, "false", true, Helpers.InvariantCulture) == 0)
					enableSessionState = PagesEnableSessionState.False;
				else
					ThrowParseException ("Invalid value for enableSessionState: " + enabless);
			}

			string value = GetString (atts, "CodePage", null);
			if (value != null) {
				if (responseEncoding != null)
					ThrowParseException ("CodePage and ResponseEncoding are mutually exclusive.");
#if NET_2_0
				if (!BaseParser.IsExpression (value)) {
#endif
					int cpval = -1;

					try {
						cpval = (int) UInt32.Parse (value);
					} catch {
						ThrowParseException ("Invalid value for CodePage: " + value);
					}

					try {
						Encoding.GetEncoding (cpval);
					} catch {
						ThrowParseException ("Unsupported codepage: " + value);
					}
#if NET_2_0
					codepage = new MainDirectiveAttribute <int> (cpval, true);
#else
					codepage = new MainDirectiveAttribute (cpval);
#endif

#if NET_2_0
				} else
					codepage = new MainDirectiveAttribute <int> (value);
#endif
			}
			
			value = GetString (atts, "ResponseEncoding", null);
			if (value != null) {
				if (codepage != null)
					ThrowParseException ("CodePage and ResponseEncoding are mutually exclusive.");
#if NET_2_0
				if (!BaseParser.IsExpression (value)) {
#endif
					try {
						Encoding.GetEncoding (value);
					} catch {
						ThrowParseException ("Unsupported encoding: " + value);
					}
#if NET_2_0
					responseEncoding = new MainDirectiveAttribute <string> (value, true);
#else
					responseEncoding = new MainDirectiveAttribute (value);
#endif

#if NET_2_0
				} else
					responseEncoding = new MainDirectiveAttribute <string> (value);
#endif
			}
			
			contentType = GetString (atts, "ContentType", null);

			value = GetString (atts, "LCID", null);
			if (value != null) {
#if NET_2_0
				if (!BaseParser.IsExpression (value)) {
#endif
					int parsedLcid = -1;
					try {
						parsedLcid = (int) UInt32.Parse (value);
					} catch {
						ThrowParseException ("Invalid value for LCID: " + value);
					}

					CultureInfo ci = null;
					try {
						ci = new CultureInfo (parsedLcid);
					} catch {
						ThrowParseException ("Unsupported LCID: " + value);
					}

					if (ci.IsNeutralCulture) {
						string suggestedCulture = SuggestCulture (ci.Name);
						string fmt = "LCID attribute must be set to a non-neutral Culture.";
						if (suggestedCulture != null) {
							ThrowParseException (fmt + " Please try one of these: " +
									     suggestedCulture);
						} else {
							ThrowParseException (fmt);
						}
					}
#if NET_2_0
					lcid = new MainDirectiveAttribute <int> (parsedLcid, true);
#else
					lcid = new MainDirectiveAttribute (parsedLcid);
#endif

#if NET_2_0
				} else
					lcid = new MainDirectiveAttribute <int> (value);
#endif
			}

			culture = GetString (atts, "Culture", null);
			if (culture != null) {
				if (lcid != null) 
					ThrowParseException ("Culture and LCID are mutually exclusive.");
				
				CultureInfo ci = null;
				try {
#if NET_2_0
					if (!culture.StartsWith ("auto"))
#endif
						ci = new CultureInfo (culture);
				} catch {
					ThrowParseException ("Unsupported Culture: " + culture);
				}

				if (ci != null && ci.IsNeutralCulture) {
					string suggestedCulture = SuggestCulture (culture);
					string fmt = "Culture attribute must be set to a non-neutral Culture.";
					if (suggestedCulture != null)
						ThrowParseException (fmt +
								" Please try one of these: " + suggestedCulture);
					else
						ThrowParseException (fmt);
				}
			}

			uiculture = GetString (atts, "UICulture", null);
			if (uiculture != null) {
				CultureInfo ci = null;
				try {
#if NET_2_0
					if (!uiculture.StartsWith ("auto"))
#endif
						ci = new CultureInfo (uiculture);
				} catch {
					ThrowParseException ("Unsupported Culture: " + uiculture);
				}

				if (ci != null && ci.IsNeutralCulture) {
					string suggestedCulture = SuggestCulture (uiculture);
					string fmt = "UICulture attribute must be set to a non-neutral Culture.";
					if (suggestedCulture != null)
						ThrowParseException (fmt +
								" Please try one of these: " + suggestedCulture);
					else
						ThrowParseException (fmt);
				}
			}

			string tracestr = GetString (atts, "Trace", null);
			if (tracestr != null) {
				haveTrace = true;
				atts ["Trace"] = tracestr;
				trace = GetBool (atts, "Trace", false);
			}

			string tracemodes = GetString (atts, "TraceMode", null);
			if (tracemodes != null) {
				bool valid = true;
				try {
					tracemode = (TraceMode) Enum.Parse (typeof (TraceMode), tracemodes, false);
				} catch {
					valid = false;
				}

				if (!valid || tracemode == TraceMode.Default)
					ThrowParseException ("The 'tracemode' attribute is case sensitive and must be " +
							"one of the following values: SortByTime, SortByCategory.");
			}

			errorPage = GetString (atts, "ErrorPage", null);
			validateRequest = GetBool (atts, "ValidateRequest", validateRequest);

			value = GetString (atts, "ClientTarget", null);
			if (value != null) {
#if NET_2_0
				if (!BaseParser.IsExpression (value)) {
					value = value.Trim ();
					
					ClientTargetSection sec = GetConfigSection <ClientTargetSection> ("system.web/clientTarget");
					ClientTarget ct = null;
				
					if ((ct = sec.ClientTargets [value]) == null)
						value = value.ToLowerInvariant ();
				
					if (ct == null && (ct = sec.ClientTargets [value]) == null) {
						ThrowParseException (String.Format (
									     "ClientTarget '{0}' is an invalid alias. See the " +
									     "documentation for <clientTarget> config. section.",
									     clientTarget));
					}
					value = ct.UserAgent;
					clientTarget = new MainDirectiveAttribute <string> (value, true);
#else
					NameValueCollection coll;
					coll = (NameValueCollection) HttpContext.GetAppConfig ("system.web/clientTarget");
					object ct = null;
				
					if (coll != null) {
						ct = coll [value];
						if (ct == null)
							ct = coll [value.ToLower (Helpers.InvariantCulture)];
					}
				
					if (ct == null) {
						ThrowParseException (String.Format (
									     "ClientTarget '{0}' is an invalid alias. See the " +
									     "documentation for <clientTarget> config. section.",
									     clientTarget));
					}
					clientTarget = new MainDirectiveAttribute (ct);
#endif
#if NET_2_0
				} else {
					clientTarget = new MainDirectiveAttribute <string> (value);
				}
#endif
			}

			notBuffer = !GetBool (atts, "Buffer", true);
			
#if NET_2_0
			async = GetBool (atts, "Async", false);
			string asyncTimeoutVal = GetString (atts, "AsyncTimeout", null);
			if (asyncTimeoutVal != null) {
				try {
					asyncTimeout = Int32.Parse (asyncTimeoutVal);
				} catch (Exception) {
					ThrowParseException ("AsyncTimeout must be an integer value");
				}
			}
			
			value = GetString (atts, "MasterPageFile", masterPage != null ? masterPage.Value : null);
			if (!String.IsNullOrEmpty (value)) {
				if (!BaseParser.IsExpression (value)) {
					if (!HostingEnvironment.VirtualPathProvider.FileExists (value))
						ThrowParseFileNotFound (value);
					AddDependency (value);
					masterPage = new MainDirectiveAttribute <string> (value, true);
				} else
					masterPage = new MainDirectiveAttribute <string> (value);
			}
			
			value = GetString(atts, "Title", null);
			if (value != null) {
				if (!BaseParser.IsExpression (value))
					title = new MainDirectiveAttribute <string> (value, true);
				else
					title = new MainDirectiveAttribute <string> (value);
			}
			
			value = GetString (atts, "Theme", theme != null ? theme.Value : null);
			if (value != null) {
				if (!BaseParser.IsExpression (value))
					theme = new MainDirectiveAttribute <string> (value, true);
				else
					theme = new MainDirectiveAttribute <string> (value);
			}

			styleSheetTheme = GetString (atts, "StyleSheetTheme", styleSheetTheme);
			enable_event_validation = GetBool (atts, "EnableEventValidation", enable_event_validation);
			maintainScrollPositionOnPostBack = GetBool (atts, "MaintainScrollPositionOnPostBack", maintainScrollPositionOnPostBack);
#endif
			if (atts.Contains ("EnableViewStateMac")) {
				enableViewStateMac = GetBool (atts, "EnableViewStateMac", enableViewStateMac);
				enableViewStateMacSet = true;
			}
			
			// Ignored by now
			GetString (atts, "SmartNavigation", null);

			base.ProcessMainAttributes (atts);
		}
 public void ctor_validationFailure2()
 {
     ClientTarget c = new ClientTarget("hi", "");
 }
 public void Remove(ClientTarget clientTarget)
 {
 }
 public void Add(ClientTarget clientTarget)
 {
 }
Пример #11
0
        static void Main(string[] args)
        {
            string inputStr = String.Empty;
            string option   = String.Empty;

            // Define a regular expression to allow only
            // alphanumeric inputs that are at most 20 characters
            // long. For instance "/iii:".
            Regex rex = new Regex(@"[^\/w]{1,20}");

            // Parse the user's input.
            if (args.Length < 1)
            {
                // No option entered.
                Console.Write("Input parameter missing.");
                return;
            }
            else
            {
                // Get the user's option.
                inputStr = args[0].ToLower();
                if (!(rex.Match(inputStr)).Success)
                {
                    // Wrong option format used.
                    Console.Write("Input format not allowed.");
                    return;
                }
            }

            // <Snippet1>

            // Get the Web application configuration.
            System.Configuration.Configuration configuration =
                WebConfigurationManager.OpenWebConfiguration(
                    "/aspnetTest");

            // Get the <clientTarget> section.
            ClientTargetSection clientTargetSection =
                (ClientTargetSection)configuration.GetSection(
                    "system.web/clientTarget");

            // <Snippet2>

            // Get the client target collection.
            ClientTargetCollection clientTargets =
                clientTargetSection.ClientTargets;

            // </Snippet2>

            // </Snippet1>

            try
            {
                switch (inputStr)
                {
                case "/alias":

                    // <Snippet3>

                    // Get the first client target
                    // in the collection.
                    clientTarget = clientTargets[0];

                    // Get the alias.
                    alias = clientTarget.Alias;

                    msg = String.Format(
                        "Alias:      {0}\n",
                        alias);

                    // </Snippet3>

                    Console.Write(msg);

                    break;

                case "/useragent":

                    // <Snippet4>

                    // Get the first client target
                    // in the collection.
                    clientTarget = clientTargets[0];

                    // Get he user agent.
                    userAgent = clientTarget.UserAgent;

                    msg = String.Format(
                        "User Agent: {0}\n",
                        userAgent);

                    // </Snippet4>

                    Console.Write(msg);

                    break;

                case "/add":

                    // <Snippet5>

                    // Create a new ClientTarget object.
                    clientTarget = new ClientTarget(
                        "my alias", "My User Agent");

                    // Add the clientTarget to
                    // the collection.
                    clientTargets.Add(clientTarget);

                    // Update the configuration file.
                    if (!clientTargetSection.IsReadOnly())
                    {
                        configuration.Save();
                    }

                    // </Snippet5>

                    alias     = clientTarget.Alias;
                    userAgent = clientTarget.UserAgent;

                    msg = String.Format(
                        "Alias:      {0}\nUser Agent: {1}\n",
                        alias, userAgent);


                    Console.Write(msg);

                    break;

                case "/clear":

                    // <Snippet6>

                    // Clear the client target collection.
                    clientTargets.Clear();

                    // Update the configuration file.
                    if (!clientTargetSection.IsReadOnly())
                    {
                        configuration.Save();
                    }

                    // </Snippet6>

                    break;

                case "/remove1":

                    // <Snippet7>

                    // Create a ClientTarget object.
                    clientTarget = new ClientTarget(
                        "my alias", "My User Agent");

                    // Remove it from the collection
                    // (if exists).
                    clientTargets.Remove(clientTarget);

                    // Update the configuration file.
                    if (!clientTargetSection.IsReadOnly())
                    {
                        configuration.Save();
                    }

                    // </Snippet7>

                    alias     = clientTarget.Alias;
                    userAgent = clientTarget.UserAgent;

                    msg = String.Format(
                        "Alias:      {0}\nUser Agent: {1}\n",
                        alias, userAgent);

                    Console.Write(msg);

                    break;

                case "/remove2":

                    // <Snippet8>

                    // Remove the client target with the
                    // specified alias from the collection
                    // (if exists).
                    clientTargets.Remove("my alias");

                    // Update the configuration file.
                    if (!clientTargetSection.IsReadOnly())
                    {
                        configuration.Save();
                    }

                    // </Snippet8>

                    break;

                case "/remove3":

                    // <Snippet9>

                    // Remove the client target at the
                    // specified index from the collection.
                    clientTargets.RemoveAt(0);

                    // Update the configuration file.
                    if (!clientTargetSection.IsReadOnly())
                    {
                        configuration.Save();
                    }

                    // </Snippet9>

                    break;

                case "/all":
                    StringBuilder allClientTargets = new StringBuilder();

                    foreach (ClientTarget clTarget in clientTargets)
                    {
                        alias     = clTarget.Alias;
                        userAgent = clTarget.UserAgent;

                        msg = String.Format(
                            "Alias:      {0}\nUser Agent: {1}\n",
                            alias, userAgent);

                        allClientTargets.AppendLine(msg);
                    }

                    Console.Write(allClientTargets.ToString());
                    break;


                default:
                    // Option is not allowed..
                    Console.Write("Input not allowed.");
                    break;
                }
            }
            catch (ArgumentException e)
            {
                // Never display this. Use it for
                // debugging purposes.
                msg = e.ToString();
            }
        }