Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- DataGridViewAutoSizeColumnsModeEventArgs.cs
- Byte.cs
- CodeCommentStatement.cs
- AnnotationStore.cs
- XmlDocument.cs
- PeekCompletedEventArgs.cs
- ApplicationManager.cs
- Animatable.cs
- WebPartCollection.cs
- Faults.cs
- PartialCachingAttribute.cs
- TdsRecordBufferSetter.cs
- JsonQueryStringConverter.cs
- DataRelation.cs
- XmlNodeChangedEventArgs.cs
- TerminatingOperationBehavior.cs
- SerialPort.cs
- LOSFormatter.cs
- Configuration.cs
- ReadOnlyObservableCollection.cs
- BindMarkupExtensionSerializer.cs
- serverconfig.cs
- TextServicesDisplayAttribute.cs
- DynamicFilter.cs
- EditorAttribute.cs
- MaskedTextProvider.cs
- HexParser.cs
- ClientFormsIdentity.cs
- URL.cs
- SystemNetHelpers.cs
- SpecialNameAttribute.cs
- GraphicsPathIterator.cs
- SyntaxCheck.cs
- XmlSchemaAnnotated.cs
- ApplicationHost.cs
- ParameterCollection.cs
- UIElementIsland.cs
- Condition.cs
- CheckedListBox.cs
- Label.cs
- MediaElementAutomationPeer.cs
- localization.cs
- Page.cs
- PathGradientBrush.cs
- Listbox.cs
- Model3D.cs
- CharUnicodeInfo.cs
- AttachedPropertyMethodSelector.cs
- ContourSegment.cs
- StylusPlugInCollection.cs
- PrintDocument.cs
- unsafenativemethodstextservices.cs
- XmlAttributes.cs
- BinaryWriter.cs
- PasswordRecovery.cs
- AppliedDeviceFiltersEditor.cs
- UpDownEvent.cs
- MemoryMappedView.cs
- TemplatedEditableDesignerRegion.cs
- ConstructorBuilder.cs
- XmlElementList.cs
- GeometryModel3D.cs
- sqlnorm.cs
- InstanceKey.cs
- ThreadExceptionDialog.cs
- GridItemPatternIdentifiers.cs
- BuilderPropertyEntry.cs
- ImmutableClientRuntime.cs
- StrokeSerializer.cs
- GridViewCancelEditEventArgs.cs
- BrushConverter.cs
- CannotUnloadAppDomainException.cs
- RSAPKCS1KeyExchangeFormatter.cs
- XsltSettings.cs
- JoinGraph.cs
- IdentitySection.cs
- Listbox.cs
- DataGridViewAdvancedBorderStyle.cs
- ClientProxyGenerator.cs
- RuntimeIdentifierPropertyAttribute.cs
- FrameSecurityDescriptor.cs
- HttpApplicationFactory.cs
- XPathItem.cs
- BufferedGraphicsContext.cs
- ShaderEffect.cs
- WpfXamlMember.cs
- ButtonBaseDesigner.cs
- DesignerActionMethodItem.cs
- CombinedGeometry.cs
- StorageEntitySetMapping.cs
- EntityModelSchemaGenerator.cs
- DataKey.cs
- SHA512Managed.cs
- EmissiveMaterial.cs
- ProcessThread.cs
- AuthenticationService.cs
- MultipartIdentifier.cs
- SmiEventSink_DeferedProcessing.cs
- DragEvent.cs
- FixedBufferAttribute.cs