Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / xsp / System / Web / Profile / HttpProfileGroupBase.cs / 1305376 / 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; 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- CallTemplateAction.cs
- ClassicBorderDecorator.cs
- DoubleLinkListEnumerator.cs
- Site.cs
- GraphicsPathIterator.cs
- SamlAuthenticationStatement.cs
- HttpFileCollection.cs
- TransactionFlowBindingElement.cs
- InvalidateEvent.cs
- GridViewRowCollection.cs
- DataGridView.cs
- unitconverter.cs
- WsdlBuildProvider.cs
- DoubleLinkList.cs
- XmlDataDocument.cs
- ActivatableWorkflowsQueryResult.cs
- ElementInit.cs
- WebPartCatalogAddVerb.cs
- ItemContainerGenerator.cs
- SourceElementsCollection.cs
- LicenseManager.cs
- QuaternionAnimation.cs
- QilTypeChecker.cs
- CodeAccessPermission.cs
- Region.cs
- HwndSourceKeyboardInputSite.cs
- DataMisalignedException.cs
- RIPEMD160Managed.cs
- ListItemsCollectionEditor.cs
- BufferedGraphicsManager.cs
- PopupControlService.cs
- HttpDebugHandler.cs
- WebPartEditorApplyVerb.cs
- ControlAdapter.cs
- ColumnClickEvent.cs
- UrlMappingsModule.cs
- TableStyle.cs
- RTTrackingProfile.cs
- SqlBulkCopy.cs
- BufferModesCollection.cs
- ProvidePropertyAttribute.cs
- Semaphore.cs
- ImageSource.cs
- TemplateContainer.cs
- WebColorConverter.cs
- DataColumnChangeEvent.cs
- Journaling.cs
- ReadOnlyDictionary.cs
- MarshalByRefObject.cs
- InvalidWMPVersionException.cs
- XPathCompileException.cs
- BuildProviderAppliesToAttribute.cs
- PathSegmentCollection.cs
- RuleDefinitions.cs
- HttpFileCollection.cs
- LocalBuilder.cs
- CodePropertyReferenceExpression.cs
- isolationinterop.cs
- CustomValidator.cs
- ImageUrlEditor.cs
- EntityDataSourceContextCreatedEventArgs.cs
- DynamicControlParameter.cs
- RequestResizeEvent.cs
- TransactionContextManager.cs
- DataObjectSettingDataEventArgs.cs
- InkCollectionBehavior.cs
- XPathParser.cs
- EmulateRecognizeCompletedEventArgs.cs
- ProcessManager.cs
- TabItem.cs
- WindowsStartMenu.cs
- PropertyValue.cs
- IPEndPoint.cs
- DataMisalignedException.cs
- WebScriptMetadataMessageEncodingBindingElement.cs
- StylusPointPropertyId.cs
- PanelStyle.cs
- SqlPersonalizationProvider.cs
- UniqueIdentifierService.cs
- SEHException.cs
- validationstate.cs
- autovalidator.cs
- StructuredProperty.cs
- StorageAssociationTypeMapping.cs
- PersonalizationStateInfoCollection.cs
- WebPartDisplayModeCollection.cs
- ReadOnlyTernaryTree.cs
- WebReferencesBuildProvider.cs
- FamilyMapCollection.cs
- SafeThemeHandle.cs
- FontFamily.cs
- ProfilePropertyMetadata.cs
- ToolStripDropDownClosingEventArgs.cs
- GridViewDeletedEventArgs.cs
- CancelEventArgs.cs
- DecimalConstantAttribute.cs
- ComponentCollection.cs
- MethodExpression.cs
- Configuration.cs
- StylusDevice.cs