Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / 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; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- DetailsViewRow.cs
- PathParser.cs
- QuadraticBezierSegment.cs
- InkSerializer.cs
- BaseAddressPrefixFilterElement.cs
- Suspend.cs
- WindowsTab.cs
- xmlsaver.cs
- EnvironmentPermission.cs
- DataGridViewUtilities.cs
- WindowsListViewSubItem.cs
- DecoderFallbackWithFailureFlag.cs
- HttpDictionary.cs
- UnsafeNativeMethods.cs
- ObjectIDGenerator.cs
- SelectedDatesCollection.cs
- UnlockInstanceCommand.cs
- DefaultBindingPropertyAttribute.cs
- NetDispatcherFaultException.cs
- SubqueryTrackingVisitor.cs
- DelegateInArgument.cs
- ClientFormsIdentity.cs
- TailCallAnalyzer.cs
- DataGridViewElement.cs
- TypeForwardedToAttribute.cs
- ResourceExpressionBuilder.cs
- ProxyElement.cs
- StringAnimationBase.cs
- HtmlSelect.cs
- DataServiceException.cs
- CompilerCollection.cs
- SoundPlayer.cs
- ReadWriteObjectLock.cs
- Thumb.cs
- DesignerActionPanel.cs
- NativeMethods.cs
- DataGridViewRowCancelEventArgs.cs
- ScrollChangedEventArgs.cs
- ModelVisual3D.cs
- SqlFunctionAttribute.cs
- DbConnectionHelper.cs
- ExpandSegment.cs
- NumericUpDownAccelerationCollection.cs
- MetabaseServerConfig.cs
- CaseStatementProjectedSlot.cs
- PropertySegmentSerializer.cs
- HandleInitializationContext.cs
- XpsS0ValidatingLoader.cs
- PrimarySelectionAdorner.cs
- ContentPresenter.cs
- LinearGradientBrush.cs
- SymmetricCryptoHandle.cs
- RenderingBiasValidation.cs
- Line.cs
- RewritingValidator.cs
- safemediahandle.cs
- EventSinkActivity.cs
- StructuredCompositeActivityDesigner.cs
- Triplet.cs
- CodeGotoStatement.cs
- CqlLexerHelpers.cs
- SafeSecurityHelper.cs
- XmlAggregates.cs
- OleServicesContext.cs
- MouseActionValueSerializer.cs
- TableItemStyle.cs
- GenericEnumerator.cs
- DeferredReference.cs
- TraceHandlerErrorFormatter.cs
- NotImplementedException.cs
- InputBindingCollection.cs
- DataGridViewCellConverter.cs
- GenericsInstances.cs
- SchemaCollectionCompiler.cs
- ContextStaticAttribute.cs
- SqlNodeAnnotation.cs
- TerminateWorkflow.cs
- WebBrowsableAttribute.cs
- RepeatInfo.cs
- ResponseBodyWriter.cs
- DateTime.cs
- BinarySerializer.cs
- NavigationService.cs
- ColorAnimationUsingKeyFrames.cs
- Repeater.cs
- SqlNode.cs
- TraceLevelHelper.cs
- WebPartsSection.cs
- DataBindingValueUIHandler.cs
- ProgramPublisher.cs
- WorkflowRuntimeBehavior.cs
- EventMappingSettingsCollection.cs
- InputGestureCollection.cs
- DataGridViewCellStyleBuilderDialog.cs
- PropertyPath.cs
- TypedRowHandler.cs
- _UriSyntax.cs
- PositiveTimeSpanValidator.cs
- NetSectionGroup.cs
- InstanceDescriptor.cs