Code:
/ 4.0 / 4.0 / 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. //------------------------------------------------------------------------------ //// 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
- EmptyEnumerable.cs
- SystemGatewayIPAddressInformation.cs
- UpdateTracker.cs
- NamespaceInfo.cs
- RedirectionProxy.cs
- ToggleButton.cs
- EmissiveMaterial.cs
- SerializationHelper.cs
- CommandEventArgs.cs
- PlaceHolder.cs
- StyleModeStack.cs
- LongPath.cs
- Double.cs
- ImportContext.cs
- DynamicValueConverter.cs
- PropertyPushdownHelper.cs
- FieldBuilder.cs
- GeometryGroup.cs
- PageThemeBuildProvider.cs
- Geometry.cs
- ChannelSinkStacks.cs
- TextProperties.cs
- Type.cs
- TabOrder.cs
- RecordBuilder.cs
- SelectionRangeConverter.cs
- BitmapSizeOptions.cs
- AttributeCollection.cs
- Comparer.cs
- Inflater.cs
- ScriptRef.cs
- AxisAngleRotation3D.cs
- ParagraphResult.cs
- ViewBase.cs
- StringDictionaryWithComparer.cs
- DefaultHttpHandler.cs
- FlowDocumentPageViewerAutomationPeer.cs
- DesignerLoader.cs
- SiteMapNode.cs
- ScriptManagerProxy.cs
- XmlSchemaDocumentation.cs
- ResourceReferenceKeyNotFoundException.cs
- TextTreeRootTextBlock.cs
- StylusTip.cs
- DesignerActionMethodItem.cs
- CheckedListBox.cs
- ContainerVisual.cs
- ListBoxChrome.cs
- CustomAttributeFormatException.cs
- VScrollProperties.cs
- CodeTypeReferenceExpression.cs
- InternalTypeHelper.cs
- DesignTimeSiteMapProvider.cs
- Hex.cs
- HostSecurityManager.cs
- storepermission.cs
- EncryptedHeaderXml.cs
- ElementFactory.cs
- FontDialog.cs
- _NetRes.cs
- WebServiceTypeData.cs
- WindowsTokenRoleProvider.cs
- CompilerHelpers.cs
- GeometryGroup.cs
- PropertyInfoSet.cs
- FixedTextPointer.cs
- RegisteredScript.cs
- AsyncOperation.cs
- ListControlActionList.cs
- ArraySet.cs
- ProcessModule.cs
- TransformerInfo.cs
- ClosableStream.cs
- FieldToken.cs
- XmlObjectSerializerWriteContextComplexJson.cs
- CodeAttributeDeclarationCollection.cs
- BidOverLoads.cs
- PrtTicket_Public_Simple.cs
- XsdDataContractExporter.cs
- RemotingSurrogateSelector.cs
- SourceFilter.cs
- ConfigPathUtility.cs
- SiteMembershipCondition.cs
- PageBorderless.cs
- SamlAttributeStatement.cs
- SqlColumnizer.cs
- ReflectionPermission.cs
- DispatcherProcessingDisabled.cs
- Binding.cs
- OleDbConnectionFactory.cs
- DesignBindingPicker.cs
- ChannelManagerHelpers.cs
- EntityProxyTypeInfo.cs
- DataRecordInfo.cs
- InternalEnumValidatorAttribute.cs
- DockAndAnchorLayout.cs
- NullableFloatAverageAggregationOperator.cs
- Function.cs
- DescendantQuery.cs
- AutoFocusStyle.xaml.cs