Code:
/ FX-1434 / FX-1434 / 1.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / ComplexPropertyEntry.cs / 1 / ComplexPropertyEntry.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI { using System.Security.Permissions; ////// PropertyEntry for read/write and readonly complex properties /// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class ComplexPropertyEntry : BuilderPropertyEntry { private bool _readOnly; private bool _isCollectionItem; internal ComplexPropertyEntry() { } internal ComplexPropertyEntry(bool isCollectionItem) { _isCollectionItem = isCollectionItem; } ////// Indicates whether the property is a collection property. /// public bool IsCollectionItem { get { return _isCollectionItem; } } ////// public bool ReadOnly { get { return _readOnly; } set { _readOnly = value; } } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ObjectSpanRewriter.cs
- ListBindingHelper.cs
- TraceShell.cs
- SelectorAutomationPeer.cs
- AddInIpcChannel.cs
- Faults.cs
- MenuItemStyleCollection.cs
- CustomAttribute.cs
- DbDataRecord.cs
- DesignerCalendarAdapter.cs
- SmiEventStream.cs
- PresentationSource.cs
- CommandField.cs
- DataGridViewCellStateChangedEventArgs.cs
- _Rfc2616CacheValidators.cs
- RenderOptions.cs
- ExcludePathInfo.cs
- RemoteCryptoDecryptRequest.cs
- EmbeddedMailObject.cs
- DataObjectPastingEventArgs.cs
- BoundingRectTracker.cs
- XhtmlBasicFormAdapter.cs
- ToolTip.cs
- Int16Converter.cs
- RoutedEventHandlerInfo.cs
- PnrpPeerResolver.cs
- httpapplicationstate.cs
- CodeNamespaceCollection.cs
- SecurityContext.cs
- DataGridViewCellStyle.cs
- SettingsAttributeDictionary.cs
- HMACMD5.cs
- XamlHostingConfiguration.cs
- KeyPressEvent.cs
- SourceChangedEventArgs.cs
- FilterException.cs
- updatecommandorderer.cs
- OrderByQueryOptionExpression.cs
- WebPartTracker.cs
- ImageIndexConverter.cs
- PixelFormats.cs
- TabControlToolboxItem.cs
- TwoPhaseCommit.cs
- DictationGrammar.cs
- DmlSqlGenerator.cs
- DataObject.cs
- DataFormats.cs
- PeerEndPoint.cs
- SystemException.cs
- ContextToken.cs
- GridViewEditEventArgs.cs
- ObjectParameterCollection.cs
- ChannelDemuxer.cs
- HttpClientChannel.cs
- PeerName.cs
- XmlSchemas.cs
- CharacterString.cs
- NativeMethods.cs
- HttpHandlerActionCollection.cs
- WorkflowOwnershipException.cs
- MachineSettingsSection.cs
- ProxyFragment.cs
- SmtpDigestAuthenticationModule.cs
- ObjectViewListener.cs
- VirtualDirectoryMappingCollection.cs
- DelegateOutArgument.cs
- HttpServerUtilityBase.cs
- TraversalRequest.cs
- XmlSchemaSubstitutionGroup.cs
- Aggregates.cs
- ConcurrentBag.cs
- GridViewUpdateEventArgs.cs
- Mappings.cs
- RequestDescription.cs
- HtmlHead.cs
- ReferencedType.cs
- InstallerTypeAttribute.cs
- TTSEngineTypes.cs
- ExclusiveTcpListener.cs
- ChangePasswordDesigner.cs
- DocumentViewer.cs
- Classification.cs
- DataGridClipboardHelper.cs
- DocumentReferenceCollection.cs
- CultureInfoConverter.cs
- FileNotFoundException.cs
- GeometryCombineModeValidation.cs
- SoundPlayer.cs
- CreateUserErrorEventArgs.cs
- XmlChoiceIdentifierAttribute.cs
- PathSegment.cs
- sqlmetadatafactory.cs
- FormView.cs
- DetailsViewDeletedEventArgs.cs
- NullableDecimalSumAggregationOperator.cs
- RowUpdatingEventArgs.cs
- Convert.cs
- SpeakProgressEventArgs.cs
- EntityContainerEmitter.cs
- DataGridViewColumnDividerDoubleClickEventArgs.cs