Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebParts / PersonalizationStateQuery.cs / 1 / 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); // VSWhidbey 357097: UserInactiveSinceDate needs to have a default value returned for the indexer property _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"); // VSWhidbey 436311: We need to check the value types for known properties 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. // //----------------------------------------------------------------------------- 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); // VSWhidbey 357097: UserInactiveSinceDate needs to have a default value returned for the indexer property _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"); // VSWhidbey 436311: We need to check the value types for known properties 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- XmlChildEnumerator.cs
- TextTreeNode.cs
- DataGridViewSelectedRowCollection.cs
- WorkflowServiceBehavior.cs
- InkPresenterAutomationPeer.cs
- Command.cs
- _ShellExpression.cs
- EFAssociationProvider.cs
- Terminate.cs
- SizeAnimation.cs
- NativeMethodsOther.cs
- DesignerVerbCollection.cs
- RegexGroupCollection.cs
- CustomAttributeSerializer.cs
- HtmlImageAdapter.cs
- DesignerActionPanel.cs
- ButtonBase.cs
- VisualStyleRenderer.cs
- ProviderSettingsCollection.cs
- RepeaterCommandEventArgs.cs
- GlyphTypeface.cs
- GenericXmlSecurityToken.cs
- Properties.cs
- XmlSchemaSimpleTypeUnion.cs
- MergeFailedEvent.cs
- OleDbParameter.cs
- ParserOptions.cs
- TaskDesigner.cs
- SendKeys.cs
- SecurityHeaderElementInferenceEngine.cs
- StringUtil.cs
- MemberPathMap.cs
- DoubleKeyFrameCollection.cs
- SmiEventSink_Default.cs
- MailDefinition.cs
- FontCollection.cs
- HWStack.cs
- ApplicationFileParser.cs
- TextElement.cs
- SafeRightsManagementQueryHandle.cs
- DateTimeFormat.cs
- ParameterCollection.cs
- XmlReader.cs
- XmlSchemaParticle.cs
- RecordBuilder.cs
- EdmValidator.cs
- MemoryStream.cs
- ExtensionQuery.cs
- ProcessModuleCollection.cs
- CompositionAdorner.cs
- RichTextBoxDesigner.cs
- HyperLinkStyle.cs
- WebPartDeleteVerb.cs
- WorkingDirectoryEditor.cs
- WebServiceBindingAttribute.cs
- DbMetaDataCollectionNames.cs
- XmlStringTable.cs
- FormViewPagerRow.cs
- FormViewPageEventArgs.cs
- ELinqQueryState.cs
- PageAsyncTaskManager.cs
- AddInEnvironment.cs
- ConfigurationManager.cs
- QueryValue.cs
- PageBuildProvider.cs
- ComponentSerializationService.cs
- ConnectionPoint.cs
- WasEndpointConfigContainer.cs
- ParameterSubsegment.cs
- SparseMemoryStream.cs
- PrintDialog.cs
- XmlText.cs
- InheritablePropertyChangeInfo.cs
- FileDetails.cs
- EventLogLink.cs
- TransactionFlowElement.cs
- AdRotator.cs
- IconBitmapDecoder.cs
- WebPartConnection.cs
- Page.cs
- BatchParser.cs
- MatrixTransform3D.cs
- OrderPreservingMergeHelper.cs
- DecoratedNameAttribute.cs
- XPathParser.cs
- NativeActivityAbortContext.cs
- NavigationHelper.cs
- PersonalizationProviderCollection.cs
- WebHeaderCollection.cs
- DependentList.cs
- TaskFormBase.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ApplicationSecurityManager.cs
- PartManifestEntry.cs
- ConfigurationElementCollection.cs
- XamlPointCollectionSerializer.cs
- CompositeControl.cs
- CallbackValidator.cs
- WrappedKeySecurityToken.cs
- DbModificationClause.cs