Code:
/ FXUpdate3074 / FXUpdate3074 / 1.1 / untmp / whidbey / QFE / ndp / fx / src / xsp / System / Web / UI / PropertyEntry.cs / 1 / PropertyEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Reflection; using System.Security.Permissions; ////// Base class for all PropertyEntries. /// /// PropertyEntry /// BoundPropertyEntry /// BuilderPropertyEntry /// ComplexPropertyEntry /// TemplatePropertyEntry /// SimplePropertyEntry /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public abstract class PropertyEntry { private string _filter; private PropertyInfo _propertyInfo; private string _name; private Type _type; private int _index; private int _order; internal PropertyEntry() { } ////// public string Filter { get { return _filter; } set { _filter = value; } } // The order of the entry that needs to be sorted. internal int Order { get { return _order; } set { _order = value; } } // The index of the entry declared in persisted format. internal int Index { get { return _index; } set { _index = value; } } ////// public PropertyInfo PropertyInfo { get { return _propertyInfo; } set { _propertyInfo = value; } } ////// public string Name { get { return _name; } set { _name = value; } } ////// public Type Type { get { return _type; } set { _type = value; } } ////// public Type DeclaringType { get { if (_propertyInfo == null) return null; return _propertyInfo.DeclaringType; } } } } // 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
- TraceXPathNavigator.cs
- WindowsListViewScroll.cs
- TrackingProfile.cs
- DataGridRowEventArgs.cs
- GridViewColumn.cs
- DrawingGroupDrawingContext.cs
- XmlC14NWriter.cs
- DesignerSerializationManager.cs
- ServiceBusyException.cs
- DbParameterCollection.cs
- Utils.cs
- updateconfighost.cs
- CoreSwitches.cs
- IIS7UserPrincipal.cs
- StringAnimationUsingKeyFrames.cs
- GlyphingCache.cs
- WebPartCollection.cs
- TimeSpanSecondsOrInfiniteConverter.cs
- ListComponentEditor.cs
- DocComment.cs
- WorkflowRuntimeService.cs
- ExtentCqlBlock.cs
- IsolatedStorageSecurityState.cs
- DataSourceNameHandler.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- LogicalExpr.cs
- Exception.cs
- AttachmentService.cs
- RoleServiceManager.cs
- ModelServiceImpl.cs
- EnumerableValidator.cs
- PartialList.cs
- ApplicationSecurityInfo.cs
- ExtensionQuery.cs
- InkCanvasFeedbackAdorner.cs
- HybridDictionary.cs
- ErrorWebPart.cs
- RectangleF.cs
- EncodingNLS.cs
- StringAnimationBase.cs
- CustomAttributeFormatException.cs
- WebPartActionVerb.cs
- Quad.cs
- VectorValueSerializer.cs
- IsolatedStoragePermission.cs
- DisplayNameAttribute.cs
- WebServiceReceive.cs
- ConditionalBranch.cs
- ColumnWidthChangingEvent.cs
- OrderByQueryOptionExpression.cs
- ToolTip.cs
- BaseHashHelper.cs
- MSAAEventDispatcher.cs
- DefaultParameterValueAttribute.cs
- FormClosedEvent.cs
- GetWorkflowTree.cs
- BrowserCapabilitiesFactoryBase.cs
- Image.cs
- Identity.cs
- AnimationLayer.cs
- PrePostDescendentsWalker.cs
- TextChange.cs
- RightNameExpirationInfoPair.cs
- ScrollViewerAutomationPeer.cs
- ReversePositionQuery.cs
- UnsafeNativeMethods.cs
- HttpResponseInternalWrapper.cs
- ScriptRegistrationManager.cs
- PtsPage.cs
- DesignerCategoryAttribute.cs
- StylusDownEventArgs.cs
- AvTraceDetails.cs
- DeferredSelectedIndexReference.cs
- BatchParser.cs
- DesignerView.Commands.cs
- SettingsPropertyValue.cs
- DataBoundControlAdapter.cs
- SafeHandles.cs
- TogglePattern.cs
- BitmapEncoder.cs
- TimeoutTimer.cs
- DataMember.cs
- XamlVector3DCollectionSerializer.cs
- EndOfStreamException.cs
- ScrollProperties.cs
- ZoneLinkButton.cs
- Rijndael.cs
- DataTableReaderListener.cs
- XmlBinaryReaderSession.cs
- SourceFilter.cs
- WebPartMenuStyle.cs
- MessageQueue.cs
- ResourceManager.cs
- SystemSounds.cs
- ToolStripControlHost.cs
- Schema.cs
- XmlSchemaAttributeGroupRef.cs
- WebSysDefaultValueAttribute.cs
- EntityDescriptor.cs
- PathGradientBrush.cs