Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / Profile / HttpProfileGroupBase.cs / 1 / HttpProfileGroupBase.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- /* * ProfileGroupBase * * Copyright (c) 2002 Microsoft Corporation */ namespace System.Web.Profile { using System.Security.Principal; using System.Security.Permissions; using System.Collections; using System.Collections.Specialized; using System.Web.Configuration; using System.Web.Util; using System.Web.Security; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ProfileGroupBase { public object this[string propertyName] { get { return _Parent[_MyName + propertyName];} set { _Parent[_MyName + propertyName] = value; } } public object GetPropertyValue(string propertyName) { return _Parent[_MyName + propertyName]; } public void SetPropertyValue(string propertyName, object propertyValue) { _Parent[_MyName + propertyName] = propertyValue; } //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// //////////////////////////////////////////////////////////// public ProfileGroupBase() { _Parent = null; _MyName = null; } public void Init(ProfileBase parent, string myName) { if (_Parent == null) { _Parent = parent; _MyName = myName + "."; } } private string _MyName; private ProfileBase _Parent; } } // 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
- ControlHelper.cs
- SafeUserTokenHandle.cs
- PrivateUnsafeNativeCompoundFileMethods.cs
- InfoCardRSAOAEPKeyExchangeDeformatter.cs
- EntityContainerAssociationSetEnd.cs
- ReaderWriterLock.cs
- SupportsEventValidationAttribute.cs
- ProtocolElement.cs
- WindowsScroll.cs
- FileSystemEventArgs.cs
- PerformanceCounterPermissionAttribute.cs
- AttributeProviderAttribute.cs
- EventHandlersStore.cs
- Container.cs
- ComplexObject.cs
- ButtonChrome.cs
- WebControlAdapter.cs
- CreateInstanceBinder.cs
- SiteMap.cs
- Setter.cs
- ConsumerConnectionPointCollection.cs
- EventToken.cs
- NavigationService.cs
- TcpClientCredentialType.cs
- PreservationFileWriter.cs
- FileVersionInfo.cs
- Compilation.cs
- odbcmetadatafactory.cs
- GregorianCalendarHelper.cs
- CodeSubDirectoriesCollection.cs
- Expression.cs
- Attribute.cs
- FilterElement.cs
- IdleTimeoutMonitor.cs
- ProjectionCamera.cs
- Schedule.cs
- SoapAttributeAttribute.cs
- XAMLParseException.cs
- DisplayNameAttribute.cs
- TypeLoadException.cs
- AlternateView.cs
- JsonReaderDelegator.cs
- ReadOnlyAttribute.cs
- EventMap.cs
- TextElementEnumerator.cs
- ColumnCollection.cs
- ResXDataNode.cs
- SamlDoNotCacheCondition.cs
- LineInfo.cs
- UdpTransportSettingsElement.cs
- MsmqBindingBase.cs
- PrinterResolution.cs
- StackSpiller.Temps.cs
- RemotingService.cs
- QueryHandler.cs
- CustomAttribute.cs
- DelimitedListTraceListener.cs
- HostingEnvironmentException.cs
- AnnouncementInnerClientCD1.cs
- Parsers.cs
- UriParserTemplates.cs
- StaticExtensionConverter.cs
- ReadOnlyDataSource.cs
- RemotingSurrogateSelector.cs
- EditorPartChrome.cs
- DefaultValidator.cs
- ConsumerConnectionPointCollection.cs
- AsyncPostBackTrigger.cs
- Selection.cs
- Statements.cs
- DocumentEventArgs.cs
- ApplicationDirectoryMembershipCondition.cs
- PropertyGroupDescription.cs
- OrderedParallelQuery.cs
- ToolStripPanelDesigner.cs
- UITypeEditor.cs
- LicenseContext.cs
- ObjectSecurity.cs
- CriticalExceptions.cs
- TdsValueSetter.cs
- XmlWriterTraceListener.cs
- CompiledELinqQueryState.cs
- PassportPrincipal.cs
- DynamicUpdateCommand.cs
- OciLobLocator.cs
- SetterTriggerConditionValueConverter.cs
- PreviewKeyDownEventArgs.cs
- FamilyCollection.cs
- PageCatalogPartDesigner.cs
- XmlParserContext.cs
- StorageEndPropertyMapping.cs
- CustomValidator.cs
- SQLBoolean.cs
- TreeBuilderBamlTranslator.cs
- XmlRootAttribute.cs
- EdmValidator.cs
- DefaultBindingPropertyAttribute.cs
- Utility.cs
- Msec.cs
- HeaderPanel.cs