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
- SessionStateItemCollection.cs
- OdbcUtils.cs
- TreePrinter.cs
- KnownTypes.cs
- BamlWriter.cs
- TargetControlTypeAttribute.cs
- Animatable.cs
- DockAndAnchorLayout.cs
- ArrayList.cs
- ObjectViewListener.cs
- Roles.cs
- ChannelManagerService.cs
- loginstatus.cs
- DSASignatureDeformatter.cs
- ArrayWithOffset.cs
- _BaseOverlappedAsyncResult.cs
- XmlSubtreeReader.cs
- SoapAttributeOverrides.cs
- Assert.cs
- RectangleHotSpot.cs
- ListItemCollection.cs
- MailMessage.cs
- HtmlInputImage.cs
- KeyedHashAlgorithm.cs
- SqlCacheDependencySection.cs
- SQLByteStorage.cs
- FrameworkElementAutomationPeer.cs
- DesignTimeParseData.cs
- BaseTemplateParser.cs
- DataListItem.cs
- AppearanceEditorPart.cs
- path.cs
- DefaultValueConverter.cs
- ApplicationException.cs
- HttpValueCollection.cs
- PerfCounters.cs
- UndoUnit.cs
- Trustee.cs
- KeyboardDevice.cs
- OleDbPropertySetGuid.cs
- SemanticResolver.cs
- Configuration.cs
- PageAsyncTask.cs
- SecurityDescriptor.cs
- SecureStringHasher.cs
- EdmItemError.cs
- PrivilegedConfigurationManager.cs
- Vector3DAnimationBase.cs
- LineVisual.cs
- MarginsConverter.cs
- GlyphRunDrawing.cs
- SolidBrush.cs
- URLString.cs
- BufferedGraphicsContext.cs
- ControlPersister.cs
- FunctionUpdateCommand.cs
- SymDocumentType.cs
- StorageFunctionMapping.cs
- PageTheme.cs
- sqlnorm.cs
- ScrollEvent.cs
- ImageSourceValueSerializer.cs
- PlainXmlSerializer.cs
- TrackingServices.cs
- ConvertBinder.cs
- SHA256.cs
- Profiler.cs
- SecurityElement.cs
- TypeListConverter.cs
- StyleModeStack.cs
- DataControlFieldCollection.cs
- ClientWindowsAuthenticationMembershipProvider.cs
- MediaTimeline.cs
- IndentedTextWriter.cs
- ProcessDesigner.cs
- PropertyTabAttribute.cs
- SettingsAttributes.cs
- Math.cs
- OdbcConnectionString.cs
- EventHandlersDesigner.cs
- MediaScriptCommandRoutedEventArgs.cs
- DynamicFilter.cs
- InputLanguageSource.cs
- MdImport.cs
- TopClause.cs
- TextSegment.cs
- StateWorkerRequest.cs
- _ListenerAsyncResult.cs
- SemanticAnalyzer.cs
- CollectionMarkupSerializer.cs
- XmlSchemaValidator.cs
- DbConnectionPoolGroupProviderInfo.cs
- SystemUnicastIPAddressInformation.cs
- TextServicesHost.cs
- CacheEntry.cs
- SystemResourceKey.cs
- SoapExtensionImporter.cs
- PrintDialog.cs
- DbProviderManifest.cs
- DataBindEngine.cs