Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- PrintEvent.cs
- ContentIterators.cs
- PermissionListSet.cs
- NavigationService.cs
- ProgressChangedEventArgs.cs
- BasePropertyDescriptor.cs
- NetTcpBindingElement.cs
- SiteMapNodeCollection.cs
- DeviceSpecificChoice.cs
- CroppedBitmap.cs
- VisualStyleRenderer.cs
- CharEnumerator.cs
- OutOfMemoryException.cs
- DataTableReader.cs
- CopyCodeAction.cs
- OdbcConnectionPoolProviderInfo.cs
- VarRemapper.cs
- Interlocked.cs
- Int64AnimationUsingKeyFrames.cs
- SqlCachedBuffer.cs
- ScriptingJsonSerializationSection.cs
- TextServicesCompartment.cs
- ObjectDataSourceStatusEventArgs.cs
- EntityDataSourceSelectingEventArgs.cs
- KeyConverter.cs
- WorkflowValidationFailedException.cs
- ConfigurationCollectionAttribute.cs
- FileUpload.cs
- TTSEngineProxy.cs
- GeneralTransform2DTo3DTo2D.cs
- CompressedStack.cs
- PersonalizationProviderHelper.cs
- XmlNodeWriter.cs
- TypeExtension.cs
- Application.cs
- DesignBindingConverter.cs
- WriteFileContext.cs
- PeerCustomResolverElement.cs
- InvalidDataException.cs
- SQLDecimalStorage.cs
- LocalizedNameDescriptionPair.cs
- SendActivityDesignerTheme.cs
- FunctionMappingTranslator.cs
- EventDescriptorCollection.cs
- Trigger.cs
- Int32RectValueSerializer.cs
- HyperLinkStyle.cs
- HttpSessionStateBase.cs
- EntityParameterCollection.cs
- SimpleHandlerBuildProvider.cs
- TextEditorDragDrop.cs
- Condition.cs
- DataBindingExpressionBuilder.cs
- MasterPage.cs
- PrefixHandle.cs
- IsolatedStorageException.cs
- HandlerMappingMemo.cs
- CompatibleComparer.cs
- CompiledIdentityConstraint.cs
- ImpersonationOption.cs
- XPathDocumentNavigator.cs
- DuplexChannelFactory.cs
- FormsAuthentication.cs
- FileEnumerator.cs
- CounterCreationData.cs
- OperandQuery.cs
- ViewBase.cs
- SmiRequestExecutor.cs
- TextEvent.cs
- MenuItemStyleCollection.cs
- TableChangeProcessor.cs
- HtmlInputText.cs
- SHA1Managed.cs
- DivideByZeroException.cs
- EntityDesignerBuildProvider.cs
- HttpProtocolReflector.cs
- TypedElement.cs
- FixedSOMGroup.cs
- ExpressionParser.cs
- DataFormats.cs
- TextViewBase.cs
- _BaseOverlappedAsyncResult.cs
- Block.cs
- SqlAliasesReferenced.cs
- AutomationPropertyInfo.cs
- WebPartConnectionsCancelEventArgs.cs
- ManagementEventWatcher.cs
- InteropExecutor.cs
- PageThemeParser.cs
- CommonProperties.cs
- ListBox.cs
- MemoryPressure.cs
- FormDesigner.cs
- Single.cs
- DataGridViewAutoSizeModeEventArgs.cs
- MultiView.cs
- counter.cs
- RolePrincipal.cs
- OpenFileDialog.cs
- CodeFieldReferenceExpression.cs