Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / DEVDIV / depot / DevDiv / releases / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / WebParts / PersonalizationStateQuery.cs / 2 / PersonalizationStateQuery.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Security.Permissions; using System.Web.Util; [Serializable] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PersonalizationStateQuery { private static readonly Dictionary_knownPropertyTypeMappings; private HybridDictionary _data; static PersonalizationStateQuery() { _knownPropertyTypeMappings = new Dictionary (StringComparer.OrdinalIgnoreCase); _knownPropertyTypeMappings["PathToMatch"] = typeof(string); _knownPropertyTypeMappings["UserInactiveSinceDate"] = typeof(DateTime); _knownPropertyTypeMappings["UsernameToMatch"] = typeof(string); } public PersonalizationStateQuery() { _data = new HybridDictionary(true); // _data["UserInactiveSinceDate"] = PersonalizationAdministration.DefaultInactiveSinceDate; } public string PathToMatch { get { return (string) this["PathToMatch"]; } set { if (value != null) { value = value.Trim(); } _data["PathToMatch"] = value; } } public DateTime UserInactiveSinceDate { get { object o = this["UserInactiveSinceDate"]; Debug.Assert(o != null, "Should always have a default value!"); return (DateTime) o; } set { _data["UserInactiveSinceDate"] = value; } } public string UsernameToMatch { get { return (string) this["UsernameToMatch"]; } set { if (value != null) { value = value.Trim(); } _data["UsernameToMatch"] = value; } } public object this[string queryKey] { get { queryKey = StringUtil.CheckAndTrimString(queryKey, "queryKey"); return _data[queryKey]; } set { queryKey = StringUtil.CheckAndTrimString(queryKey, "queryKey"); // if (_knownPropertyTypeMappings.ContainsKey(queryKey)) { Type valueType = _knownPropertyTypeMappings[queryKey]; Debug.Assert(valueType != null); if ((value == null && valueType.IsValueType) || (value != null && !valueType.IsAssignableFrom(value.GetType()))) { throw new ArgumentException( SR.GetString(SR.PersonalizationStateQuery_IncorrectValueType, queryKey, valueType.FullName)); } } _data[queryKey] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved. //------------------------------------------------------------------------------ // // Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Security.Permissions; using System.Web.Util; [Serializable] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] public sealed class PersonalizationStateQuery { private static readonly Dictionary_knownPropertyTypeMappings; private HybridDictionary _data; static PersonalizationStateQuery() { _knownPropertyTypeMappings = new Dictionary (StringComparer.OrdinalIgnoreCase); _knownPropertyTypeMappings["PathToMatch"] = typeof(string); _knownPropertyTypeMappings["UserInactiveSinceDate"] = typeof(DateTime); _knownPropertyTypeMappings["UsernameToMatch"] = typeof(string); } public PersonalizationStateQuery() { _data = new HybridDictionary(true); // _data["UserInactiveSinceDate"] = PersonalizationAdministration.DefaultInactiveSinceDate; } public string PathToMatch { get { return (string) this["PathToMatch"]; } set { if (value != null) { value = value.Trim(); } _data["PathToMatch"] = value; } } public DateTime UserInactiveSinceDate { get { object o = this["UserInactiveSinceDate"]; Debug.Assert(o != null, "Should always have a default value!"); return (DateTime) o; } set { _data["UserInactiveSinceDate"] = value; } } public string UsernameToMatch { get { return (string) this["UsernameToMatch"]; } set { if (value != null) { value = value.Trim(); } _data["UsernameToMatch"] = value; } } public object this[string queryKey] { get { queryKey = StringUtil.CheckAndTrimString(queryKey, "queryKey"); return _data[queryKey]; } set { queryKey = StringUtil.CheckAndTrimString(queryKey, "queryKey"); // if (_knownPropertyTypeMappings.ContainsKey(queryKey)) { Type valueType = _knownPropertyTypeMappings[queryKey]; Debug.Assert(valueType != null); if ((value == null && valueType.IsValueType) || (value != null && !valueType.IsAssignableFrom(value.GetType()))) { throw new ArgumentException( SR.GetString(SR.PersonalizationStateQuery_IncorrectValueType, queryKey, valueType.FullName)); } } _data[queryKey] = value; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CollectionsUtil.cs
- AutoSizeToolBoxItem.cs
- TraceSection.cs
- activationcontext.cs
- TreeNodeBindingCollection.cs
- NavigationCommands.cs
- UnmanagedHandle.cs
- TemplateApplicationHelper.cs
- ConfigurationStrings.cs
- BaseCodeDomTreeGenerator.cs
- TemplateLookupAction.cs
- CornerRadiusConverter.cs
- CommonObjectSecurity.cs
- ContractCodeDomInfo.cs
- SqlUtils.cs
- CaseInsensitiveHashCodeProvider.cs
- UIElement3DAutomationPeer.cs
- Int16KeyFrameCollection.cs
- WSDualHttpBinding.cs
- ApplicationManager.cs
- AtomPub10ServiceDocumentFormatter.cs
- EntityCollection.cs
- MenuItemCollection.cs
- DataSet.cs
- Evaluator.cs
- BuildProviderCollection.cs
- StringArrayConverter.cs
- CompositeActivityDesigner.cs
- HtmlWindowCollection.cs
- MenuAdapter.cs
- UIElement.cs
- SortQueryOperator.cs
- ISFClipboardData.cs
- TypeElement.cs
- Decorator.cs
- TextParaClient.cs
- HtmlWindow.cs
- FloatUtil.cs
- BreakSafeBase.cs
- DataGridLinkButton.cs
- Pens.cs
- InkCanvasSelection.cs
- SelectorAutomationPeer.cs
- FixedLineResult.cs
- LocalTransaction.cs
- HtmlImage.cs
- NodeLabelEditEvent.cs
- ResourceAttributes.cs
- ServiceMemoryGates.cs
- SignHashRequest.cs
- StrokeRenderer.cs
- XPathDocumentBuilder.cs
- OutputCacheSettings.cs
- objectresult_tresulttype.cs
- ErrorLog.cs
- XmlSchemaException.cs
- HierarchicalDataSourceControl.cs
- SmiMetaDataProperty.cs
- TypeUtil.cs
- AffineTransform3D.cs
- SemaphoreSecurity.cs
- DBCommandBuilder.cs
- DbProviderFactory.cs
- KeyedPriorityQueue.cs
- TransformerConfigurationWizardBase.cs
- DashStyles.cs
- ResourceReferenceExpressionConverter.cs
- ToolStripDropDownButton.cs
- FeatureAttribute.cs
- MimeParameters.cs
- ErrorHandler.cs
- ManifestResourceInfo.cs
- SecurityElement.cs
- SqlXml.cs
- XmlDocumentType.cs
- OleDbDataAdapter.cs
- _AcceptOverlappedAsyncResult.cs
- AssemblyCollection.cs
- ColorTransform.cs
- DataTableTypeConverter.cs
- XPathNavigatorReader.cs
- BitmapEffectGroup.cs
- SafeEventLogWriteHandle.cs
- TCPListener.cs
- ContextInformation.cs
- ToolStripManager.cs
- CheckBoxBaseAdapter.cs
- SmiGettersStream.cs
- HtmlAnchor.cs
- XmlDataSource.cs
- ModelItemExtensions.cs
- InstanceView.cs
- TextBoxRenderer.cs
- WebDescriptionAttribute.cs
- DataObjectEventArgs.cs
- IndexedString.cs
- OracleTransaction.cs
- QueryOutputWriterV1.cs
- HwndHostAutomationPeer.cs
- CompilerGlobalScopeAttribute.cs