Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / 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. // //----------------------------------------------------------------------------- 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.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- RepeatInfo.cs
- _CacheStreams.cs
- TypeConverterHelper.cs
- GridViewUpdateEventArgs.cs
- DetailsViewRowCollection.cs
- ArrayListCollectionBase.cs
- InvalidAsynchronousStateException.cs
- CompiledELinqQueryState.cs
- KeyTimeConverter.cs
- TextServicesCompartmentEventSink.cs
- ServiceContractListItem.cs
- StatusStrip.cs
- exports.cs
- Validator.cs
- BindableTemplateBuilder.cs
- DivideByZeroException.cs
- BitmapEffectGroup.cs
- Comparer.cs
- Highlights.cs
- WebServiceTypeData.cs
- DateTimeUtil.cs
- SuppressedPackageProperties.cs
- TagPrefixInfo.cs
- SessionEndedEventArgs.cs
- OLEDB_Enum.cs
- Blend.cs
- DragStartedEventArgs.cs
- _NegoStream.cs
- LayoutTable.cs
- BuildDependencySet.cs
- PropertyCollection.cs
- RTLAwareMessageBox.cs
- Figure.cs
- ProtocolsConfiguration.cs
- MutexSecurity.cs
- SpAudioStreamWrapper.cs
- TCPListener.cs
- QueryRelOp.cs
- IndexedGlyphRun.cs
- EventSourceCreationData.cs
- DescriptionCreator.cs
- EventRouteFactory.cs
- EntityClientCacheEntry.cs
- Guid.cs
- ObjectSecurity.cs
- FormViewModeEventArgs.cs
- invalidudtexception.cs
- Stylesheet.cs
- activationcontext.cs
- KeyTime.cs
- DbProviderFactory.cs
- ParsedAttributeCollection.cs
- AnnotationComponentChooser.cs
- SqlDataSourceStatusEventArgs.cs
- SpeechDetectedEventArgs.cs
- DataBoundControl.cs
- COM2ExtendedUITypeEditor.cs
- TypedTableBaseExtensions.cs
- TemplateNameScope.cs
- Comparer.cs
- FontDialog.cs
- PagedControl.cs
- OleStrCAMarshaler.cs
- FactoryId.cs
- WebUtil.cs
- AttributeCollection.cs
- TreeNodeConverter.cs
- TripleDESCryptoServiceProvider.cs
- HMACRIPEMD160.cs
- EraserBehavior.cs
- NullableDoubleSumAggregationOperator.cs
- EdmPropertyAttribute.cs
- RealizationContext.cs
- ImpersonationContext.cs
- Delegate.cs
- OleDbConnection.cs
- DesignSurface.cs
- _ShellExpression.cs
- WizardSideBarListControlItemEventArgs.cs
- ImageField.cs
- PathNode.cs
- StrokeCollection.cs
- DataKeyCollection.cs
- OrthographicCamera.cs
- StandardCommandToolStripMenuItem.cs
- IntSecurity.cs
- DefaultValueAttribute.cs
- DataTableExtensions.cs
- TextEndOfParagraph.cs
- MappingSource.cs
- XamlTemplateSerializer.cs
- SRef.cs
- UpdatePanelTrigger.cs
- BitFlagsGenerator.cs
- Border.cs
- ViewValidator.cs
- ExceptionValidationRule.cs
- ClientScriptManagerWrapper.cs
- FrameworkTextComposition.cs
- HttpRequestCacheValidator.cs