Code:
/ Dotnetfx_Win7_3.5.1 / Dotnetfx_Win7_3.5.1 / 3.5.1 / DEVDIV / depot / DevDiv / releases / whidbey / NetFXspW7 / 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
- VScrollBar.cs
- ToolStripDropDown.cs
- DataSysAttribute.cs
- EntitySetBase.cs
- FieldBuilder.cs
- JsonReaderDelegator.cs
- StateFinalizationActivity.cs
- SubordinateTransaction.cs
- TagPrefixCollection.cs
- DataColumnPropertyDescriptor.cs
- BufferAllocator.cs
- HTMLTextWriter.cs
- WebPageTraceListener.cs
- QilFunction.cs
- XmlSerializerFactory.cs
- SocketInformation.cs
- DESCryptoServiceProvider.cs
- ListItemCollection.cs
- UrlAuthFailureHandler.cs
- WebServiceTypeData.cs
- CellLabel.cs
- BrowserCapabilitiesFactoryBase.cs
- TextAutomationPeer.cs
- InternalCache.cs
- FeatureSupport.cs
- Line.cs
- SelectionListDesigner.cs
- XmlSchemaException.cs
- Receive.cs
- Vector3DKeyFrameCollection.cs
- ParentQuery.cs
- Model3D.cs
- BrowsableAttribute.cs
- RequestTimeoutManager.cs
- XmlSchemaAnnotation.cs
- HwndHost.cs
- DecimalStorage.cs
- EventSetter.cs
- CqlGenerator.cs
- CommandHelpers.cs
- CodeDirectoryCompiler.cs
- xml.cs
- Behavior.cs
- ValidatorCollection.cs
- DirectoryInfo.cs
- DecodeHelper.cs
- WebPartCancelEventArgs.cs
- BoundsDrawingContextWalker.cs
- ContainsRowNumberChecker.cs
- SmtpReplyReaderFactory.cs
- WebBrowserUriTypeConverter.cs
- DataSourceView.cs
- TimeManager.cs
- ActivityTypeResolver.xaml.cs
- DetailsViewDeleteEventArgs.cs
- FileSystemInfo.cs
- RadioButtonStandardAdapter.cs
- AdapterDictionary.cs
- FilteredXmlReader.cs
- TimeZone.cs
- SpeakInfo.cs
- QilFunction.cs
- MetadataHelper.cs
- OdbcConnectionHandle.cs
- GetPageCompletedEventArgs.cs
- CookieProtection.cs
- ComboBoxItem.cs
- ActionMismatchAddressingException.cs
- MenuStrip.cs
- Label.cs
- WrapperSecurityCommunicationObject.cs
- NeutralResourcesLanguageAttribute.cs
- ProfileEventArgs.cs
- DesignerCatalogPartChrome.cs
- FixUp.cs
- UnsafeNativeMethods.cs
- SortAction.cs
- ParserHooks.cs
- XmlDataSource.cs
- _SslSessionsCache.cs
- PropertyPathWorker.cs
- EventLogTraceListener.cs
- GenericXmlSecurityTokenAuthenticator.cs
- DesignBindingPropertyDescriptor.cs
- GeometryHitTestResult.cs
- HttpRawResponse.cs
- InfoCardRequestException.cs
- ReadOnlyState.cs
- LoginCancelEventArgs.cs
- HtmlTableCell.cs
- MemberRelationshipService.cs
- DriveInfo.cs
- XmlDataSourceNodeDescriptor.cs
- SecurityDescriptor.cs
- Permission.cs
- RegexStringValidatorAttribute.cs
- AttributeQuery.cs
- FillErrorEventArgs.cs
- ExtenderControl.cs
- XdrBuilder.cs