Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / UI / WebParts / PersonalizationEntry.cs / 1305376 / PersonalizationEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; public sealed class PersonalizationEntry { private PersonalizationScope _scope; private object _value; private bool _isSensitive; public PersonalizationEntry(object value, PersonalizationScope scope) : this(value, scope, false) { } public PersonalizationEntry(object value, PersonalizationScope scope, bool isSensitive) { PersonalizationProviderHelper.CheckPersonalizationScope(scope); _value = value; _scope = scope; _isSensitive = isSensitive; } public PersonalizationScope Scope { get { return _scope; } set { if (value < PersonalizationScope.User || value > PersonalizationScope.Shared) { throw new ArgumentOutOfRangeException("value"); } _scope = value; } } public object Value { get { return _value; } set { _value = value; } } public bool IsSensitive { get { return _isSensitive; } set { _isSensitive = 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
- HttpRuntimeSection.cs
- BinaryConverter.cs
- EndPoint.cs
- CharUnicodeInfo.cs
- MembershipValidatePasswordEventArgs.cs
- safex509handles.cs
- SoapMessage.cs
- PropertyFilterAttribute.cs
- DataGridCellEditEndingEventArgs.cs
- WsiProfilesElement.cs
- HtmlElementCollection.cs
- SafeHandle.cs
- ColumnResult.cs
- BamlResourceContent.cs
- UnionCqlBlock.cs
- SafeRegistryHandle.cs
- DesignRelation.cs
- ConstraintConverter.cs
- Utility.cs
- ListBoxItemWrapperAutomationPeer.cs
- WebRequestModuleElement.cs
- WebConvert.cs
- SessionPageStateSection.cs
- SpellerStatusTable.cs
- FieldMetadata.cs
- DocumentPageViewAutomationPeer.cs
- SapiRecoContext.cs
- StreamGeometry.cs
- HttpConfigurationSystem.cs
- DynamicValueConverter.cs
- InstancePersistenceCommandException.cs
- LambdaCompiler.Unary.cs
- PageEventArgs.cs
- ApplyTemplatesAction.cs
- RelationshipNavigation.cs
- cookie.cs
- BitFlagsGenerator.cs
- OracleRowUpdatedEventArgs.cs
- BridgeDataReader.cs
- DbProviderConfigurationHandler.cs
- ProfessionalColorTable.cs
- ImportContext.cs
- SectionUpdates.cs
- BamlResourceSerializer.cs
- DebuggerAttributes.cs
- Monitor.cs
- TabletDeviceInfo.cs
- ControlLocalizer.cs
- BitmapSource.cs
- OleDbSchemaGuid.cs
- GlobalizationSection.cs
- DbTransaction.cs
- OdbcConnectionFactory.cs
- Helpers.cs
- Roles.cs
- XmlNodeWriter.cs
- ApplicationProxyInternal.cs
- InstanceHandle.cs
- WebPartConnection.cs
- CodeAttributeDeclaration.cs
- CodeCatchClause.cs
- CorePropertiesFilter.cs
- DescendantQuery.cs
- ExportException.cs
- SwitchExpression.cs
- StateDesigner.cs
- QfeChecker.cs
- Attributes.cs
- ActivityWithResult.cs
- DBAsyncResult.cs
- DetailsViewUpdateEventArgs.cs
- ReadWriteObjectLock.cs
- Margins.cs
- StrokeNode.cs
- ClientFormsIdentity.cs
- XsltInput.cs
- CultureTable.cs
- MatrixTransform3D.cs
- wmiprovider.cs
- StrokeNodeOperations.cs
- MailWebEventProvider.cs
- Guid.cs
- MdiWindowListStrip.cs
- OneOfTypeConst.cs
- CustomWebEventKey.cs
- DBDataPermissionAttribute.cs
- SliderAutomationPeer.cs
- WmlMobileTextWriter.cs
- ContextMenuService.cs
- LocalTransaction.cs
- ExpressionVisitorHelpers.cs
- TextProperties.cs
- BaseTransportHeaders.cs
- TypeBuilder.cs
- OutputCacheSection.cs
- BinaryObjectInfo.cs
- BaseAutoFormat.cs
- IndentTextWriter.cs
- ResourcePermissionBaseEntry.cs
- EntityDesignerDataSourceView.cs