Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebParts / PersonalizationEntry.cs / 5 / PersonalizationEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls.WebParts { using System; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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; using System.Security.Permissions; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] 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
- GPPOINTF.cs
- RuntimeEnvironment.cs
- ControlParameter.cs
- Collection.cs
- Pointer.cs
- SpotLight.cs
- MemberProjectionIndex.cs
- ProtectedConfigurationProviderCollection.cs
- SeparatorAutomationPeer.cs
- Image.cs
- StaticDataManager.cs
- LinkButton.cs
- smtpconnection.cs
- MembershipValidatePasswordEventArgs.cs
- Rule.cs
- OleDbParameter.cs
- ImageListStreamer.cs
- SoapFormatterSinks.cs
- LoginCancelEventArgs.cs
- ProcessingInstructionAction.cs
- ConfigurationSectionGroup.cs
- GeneralTransform.cs
- FatalException.cs
- RsaKeyIdentifierClause.cs
- SafeFileMappingHandle.cs
- BoolExpr.cs
- DataObjectPastingEventArgs.cs
- SqlWebEventProvider.cs
- Point3DCollection.cs
- ProxyHwnd.cs
- SctClaimSerializer.cs
- ComplexPropertyEntry.cs
- TranslateTransform3D.cs
- ParenthesizePropertyNameAttribute.cs
- MediaScriptCommandRoutedEventArgs.cs
- BindingContext.cs
- EntityException.cs
- Font.cs
- WinHttpWebProxyFinder.cs
- SafeEventLogReadHandle.cs
- EditingCommands.cs
- DesignerActionPropertyItem.cs
- MessageOperationFormatter.cs
- SymLanguageType.cs
- PanelDesigner.cs
- OdbcInfoMessageEvent.cs
- XmlEventCache.cs
- ValidatingReaderNodeData.cs
- ConfigUtil.cs
- SqlCommand.cs
- CompilerGlobalScopeAttribute.cs
- ClipboardData.cs
- DateTimeStorage.cs
- Image.cs
- DynamicResourceExtensionConverter.cs
- AttachmentService.cs
- PathFigure.cs
- ErrorsHelper.cs
- ObjectTypeMapping.cs
- NavigationEventArgs.cs
- DefaultExpression.cs
- PieceNameHelper.cs
- Transform.cs
- LineServicesCallbacks.cs
- DeflateStream.cs
- BrowserDefinition.cs
- EntityContainerEntitySetDefiningQuery.cs
- XPathBinder.cs
- HttpCachePolicyBase.cs
- JumpPath.cs
- EntitySqlQueryCacheKey.cs
- Scanner.cs
- ProtectedConfiguration.cs
- NamedElement.cs
- ComponentConverter.cs
- RenderContext.cs
- FileDataSourceCache.cs
- NullEntityWrapper.cs
- WindowsTitleBar.cs
- Utilities.cs
- Point.cs
- EventItfInfo.cs
- BulletedListEventArgs.cs
- CodeSpit.cs
- Rfc4050KeyFormatter.cs
- PolyQuadraticBezierSegment.cs
- SqlCommand.cs
- ThrowHelper.cs
- TypeRestriction.cs
- DesignerDataConnection.cs
- OracleRowUpdatedEventArgs.cs
- HMACMD5.cs
- EncoderBestFitFallback.cs
- ApplicationInfo.cs
- XmlArrayAttribute.cs
- DecimalAnimationUsingKeyFrames.cs
- BinaryObjectWriter.cs
- IndentedWriter.cs
- WebPartEditVerb.cs
- ipaddressinformationcollection.cs