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
- DbMetaDataColumnNames.cs
- Model3DCollection.cs
- BitmapMetadataEnumerator.cs
- ChtmlSelectionListAdapter.cs
- ManipulationVelocities.cs
- translator.cs
- CLSCompliantAttribute.cs
- AsyncStreamReader.cs
- DrawingCollection.cs
- PeerDefaultCustomResolverClient.cs
- WebConvert.cs
- WebControlsSection.cs
- RoleManagerSection.cs
- BreakRecordTable.cs
- validationstate.cs
- CancellationTokenRegistration.cs
- InternalConfigRoot.cs
- CodeIdentifiers.cs
- Int32EqualityComparer.cs
- EventDescriptor.cs
- X509Chain.cs
- PathParser.cs
- ObsoleteAttribute.cs
- SessionState.cs
- HttpProtocolReflector.cs
- ProjectionPlan.cs
- VSWCFServiceContractGenerator.cs
- HtmlTernaryTree.cs
- TransformPatternIdentifiers.cs
- XmlSchemaAnnotation.cs
- QueryStringParameter.cs
- ObjectQuery.cs
- XmlFormatExtensionAttribute.cs
- Profiler.cs
- OrderToken.cs
- IndexedWhereQueryOperator.cs
- DocumentCollection.cs
- IsolatedStoragePermission.cs
- KeyboardDevice.cs
- FixedSOMElement.cs
- DataGridToolTip.cs
- HMACSHA384.cs
- WindowsRegion.cs
- JulianCalendar.cs
- StringSorter.cs
- PLINQETWProvider.cs
- SqlProcedureAttribute.cs
- TableCellCollection.cs
- ParserStack.cs
- IdleTimeoutMonitor.cs
- KeyValuePairs.cs
- WebPartDescription.cs
- WebZone.cs
- HandlerMappingMemo.cs
- SByteConverter.cs
- XmlSchemaGroupRef.cs
- ProcessHostFactoryHelper.cs
- Debug.cs
- httpserverutility.cs
- WmfPlaceableFileHeader.cs
- CustomCategoryAttribute.cs
- CreateParams.cs
- IPAddress.cs
- metadatamappinghashervisitor.hashsourcebuilder.cs
- FileNotFoundException.cs
- BoolLiteral.cs
- PrtCap_Reader.cs
- Substitution.cs
- UrlRoutingHandler.cs
- FileEnumerator.cs
- QuinticEase.cs
- WebServiceParameterData.cs
- ActivityExecutorSurrogate.cs
- EntityCommandCompilationException.cs
- Stylesheet.cs
- FontWeight.cs
- CodeGotoStatement.cs
- ConnectionConsumerAttribute.cs
- TraceUtils.cs
- DebuggerService.cs
- ScriptReferenceEventArgs.cs
- DbgCompiler.cs
- CopyAction.cs
- DetailsViewRowCollection.cs
- GrammarBuilderDictation.cs
- TranslateTransform.cs
- InkCanvasInnerCanvas.cs
- ToolStripDesignerAvailabilityAttribute.cs
- SessionPageStatePersister.cs
- DataGridViewBand.cs
- RegexBoyerMoore.cs
- unitconverter.cs
- ConnectionStringsSection.cs
- ChtmlTextWriter.cs
- XmlDictionaryReaderQuotas.cs
- RC2.cs
- CompiledIdentityConstraint.cs
- DataControlPagerLinkButton.cs
- TaskScheduler.cs
- TriggerBase.cs