Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / 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
- ToolStripContentPanelRenderEventArgs.cs
- KeysConverter.cs
- streamingZipPartStream.cs
- ImageFormatConverter.cs
- ModuleBuilderData.cs
- ToolStripOverflowButton.cs
- MailHeaderInfo.cs
- OletxTransactionFormatter.cs
- TextSegment.cs
- LongMinMaxAggregationOperator.cs
- UndoEngine.cs
- DesigntimeLicenseContextSerializer.cs
- CodePropertyReferenceExpression.cs
- Visual3D.cs
- ListViewEditEventArgs.cs
- ActivityDesigner.cs
- MetadataItem_Static.cs
- EnumBuilder.cs
- ObjectDataSourceView.cs
- ReliabilityContractAttribute.cs
- WSHttpBindingCollectionElement.cs
- ArglessEventHandlerProxy.cs
- Vector3DCollection.cs
- ResourceDisplayNameAttribute.cs
- FactoryMaker.cs
- SQLCharsStorage.cs
- PerfCounters.cs
- RemotingAttributes.cs
- Int32CollectionConverter.cs
- LinqDataSourceDisposeEventArgs.cs
- HyperLinkStyle.cs
- WebPartDeleteVerb.cs
- ServiceNameElementCollection.cs
- WinEventWrap.cs
- ThicknessAnimation.cs
- DelegateSerializationHolder.cs
- OleDragDropHandler.cs
- DataGridItem.cs
- UriScheme.cs
- Pen.cs
- SqlPersonalizationProvider.cs
- ParserExtension.cs
- UInt16Storage.cs
- MemoryFailPoint.cs
- ColorDialog.cs
- GridView.cs
- xdrvalidator.cs
- RequestCacheManager.cs
- HttpRuntime.cs
- PermissionSetEnumerator.cs
- Region.cs
- CqlBlock.cs
- StoreItemCollection.Loader.cs
- GraphicsContext.cs
- PermissionListSet.cs
- TreeNode.cs
- XsdSchemaFileEditor.cs
- GridViewUpdatedEventArgs.cs
- ClosableStream.cs
- RadioButtonRenderer.cs
- IPEndPoint.cs
- bidPrivateBase.cs
- XPathNodeList.cs
- SchemaImporter.cs
- MethodCallExpression.cs
- Propagator.cs
- SqlUserDefinedTypeAttribute.cs
- BindingBase.cs
- DataObjectPastingEventArgs.cs
- SQLDouble.cs
- Process.cs
- PackWebResponse.cs
- HierarchicalDataSourceControl.cs
- SyndicationSerializer.cs
- Mouse.cs
- Native.cs
- TemplateNodeContextMenu.cs
- PeerPresenceInfo.cs
- loginstatus.cs
- DoubleAnimationUsingKeyFrames.cs
- AttachInfo.cs
- XPathChildIterator.cs
- DataGridViewLayoutData.cs
- DesignerToolboxInfo.cs
- DescendantOverDescendantQuery.cs
- TabPanel.cs
- Evidence.cs
- SafeRegistryKey.cs
- SecurityRuntime.cs
- PrePrepareMethodAttribute.cs
- IndexedString.cs
- ProfessionalColorTable.cs
- TextBox.cs
- ScriptingSectionGroup.cs
- CharKeyFrameCollection.cs
- LockingPersistenceProvider.cs
- TextEvent.cs
- ReadOnlyMetadataCollection.cs
- FileDialogCustomPlace.cs
- _TimerThread.cs