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
- WorkflowRuntime.cs
- CommandTreeTypeHelper.cs
- BamlRecordReader.cs
- SqlProviderManifest.cs
- CommonProperties.cs
- CapacityStreamGeometryContext.cs
- GenericAuthenticationEventArgs.cs
- NetworkInterface.cs
- SHA256Cng.cs
- XPathArrayIterator.cs
- WebPartConnectionsEventArgs.cs
- GridViewPageEventArgs.cs
- DataBindingCollectionEditor.cs
- DesignerPerfEventProvider.cs
- ServicePoint.cs
- InProcStateClientManager.cs
- XmlImplementation.cs
- KeyInterop.cs
- BehaviorService.cs
- WindowsSecurityTokenAuthenticator.cs
- Relationship.cs
- ObjectTypeMapping.cs
- CompiledQueryCacheKey.cs
- Mapping.cs
- TextRangeEdit.cs
- StsCommunicationException.cs
- TextEffect.cs
- RuntimeConfigurationRecord.cs
- BindingListCollectionView.cs
- MaskedTextProvider.cs
- SqlCaseSimplifier.cs
- entitydatasourceentitysetnameconverter.cs
- TcpStreams.cs
- EncryptRequest.cs
- FullTrustAssembly.cs
- XsdBuildProvider.cs
- CalculatedColumn.cs
- Reference.cs
- WebPartDisplayModeCancelEventArgs.cs
- IpcChannelHelper.cs
- ListViewContainer.cs
- RestHandler.cs
- NumberSubstitution.cs
- xamlnodes.cs
- Calendar.cs
- AggregateNode.cs
- DataGridViewTextBoxCell.cs
- XsltArgumentList.cs
- BufferedWebEventProvider.cs
- OleDbInfoMessageEvent.cs
- ZipIOExtraFieldZip64Element.cs
- DataSourceViewSchemaConverter.cs
- SmiEventSink_DeferedProcessing.cs
- RegistrationServices.cs
- Pen.cs
- TdsParserHelperClasses.cs
- BordersPage.cs
- ToolBarOverflowPanel.cs
- DesignerContextDescriptor.cs
- SQLGuidStorage.cs
- CommonDialog.cs
- BeginStoryboard.cs
- ResourceContainer.cs
- COAUTHINFO.cs
- HtmlHistory.cs
- GorillaCodec.cs
- CategoryAttribute.cs
- DbConnectionFactory.cs
- ClientFormsIdentity.cs
- TextElementEnumerator.cs
- TdsParameterSetter.cs
- Ppl.cs
- AppearanceEditorPart.cs
- SemaphoreSecurity.cs
- DataObjectAttribute.cs
- ValueChangedEventManager.cs
- RepeaterItemCollection.cs
- TextEffect.cs
- IChannel.cs
- DataTable.cs
- CopyNamespacesAction.cs
- ToolZone.cs
- COM2IProvidePropertyBuilderHandler.cs
- SqlResolver.cs
- GenericPrincipal.cs
- MsmqIntegrationAppDomainProtocolHandler.cs
- SourceElementsCollection.cs
- RsaKeyGen.cs
- RelatedEnd.cs
- SliderAutomationPeer.cs
- SectionInformation.cs
- StyleCollection.cs
- RepeaterCommandEventArgs.cs
- DefaultHttpHandler.cs
- StorageModelBuildProvider.cs
- MessageHeaderAttribute.cs
- NameGenerator.cs
- Journaling.cs
- HGlobalSafeHandle.cs
- CurrencyManager.cs