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 / WebControls / RepeaterItem.cs / 1 / RepeaterItem.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Web.UI; using System.Security.Permissions; ////// [ ToolboxItem(false) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class RepeaterItem : Control, IDataItemContainer { private int itemIndex; private ListItemType itemType; private object dataItem; ///Encapsulates an item within the ///control. /// public RepeaterItem(int itemIndex, ListItemType itemType) { this.itemIndex = itemIndex; this.itemType = itemType; } ///Initializes a new instance of the ///with the specified item type and /// location. /// Specifies the data item. /// public virtual object DataItem { get { return dataItem; } set { dataItem = value; } } ////// public virtual int ItemIndex { get { return itemIndex; } } ///Indicates the ordinal index that specifies the item /// location within the ////// . /// Indicates the public virtual ListItemType ItemType { get { return itemType; } } ///item type. This property is /// read-only. /// /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { RepeaterCommandEventArgs args = new RepeaterCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } int IDataItemContainer.DataItemIndex { get { return ItemIndex; } } int IDataItemContainer.DisplayIndex { get { return ItemIndex; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.ComponentModel.Design; using System.Web.UI; using System.Security.Permissions; ////// [ ToolboxItem(false) ] [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class RepeaterItem : Control, IDataItemContainer { private int itemIndex; private ListItemType itemType; private object dataItem; ///Encapsulates an item within the ///control. /// public RepeaterItem(int itemIndex, ListItemType itemType) { this.itemIndex = itemIndex; this.itemType = itemType; } ///Initializes a new instance of the ///with the specified item type and /// location. /// Specifies the data item. /// public virtual object DataItem { get { return dataItem; } set { dataItem = value; } } ////// public virtual int ItemIndex { get { return itemIndex; } } ///Indicates the ordinal index that specifies the item /// location within the ////// . /// Indicates the public virtual ListItemType ItemType { get { return itemType; } } ///item type. This property is /// read-only. /// /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { RepeaterCommandEventArgs args = new RepeaterCommandEventArgs(this, source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } int IDataItemContainer.DataItemIndex { get { return ItemIndex; } } int IDataItemContainer.DisplayIndex { get { return ItemIndex; } } } } // 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
- EntitySqlQueryState.cs
- DropShadowEffect.cs
- ReadOnlyCollection.cs
- PeerCustomResolverBindingElement.cs
- WindowsFormsHelpers.cs
- UrlAuthorizationModule.cs
- Journal.cs
- EntityProxyFactory.cs
- SHA384Managed.cs
- ResourceCodeDomSerializer.cs
- CannotUnloadAppDomainException.cs
- PieceNameHelper.cs
- SqlCacheDependencyDatabase.cs
- TypeDescriptionProviderAttribute.cs
- ByteStreamGeometryContext.cs
- HttpListenerPrefixCollection.cs
- DeleteIndexBinder.cs
- Module.cs
- ToolStripLocationCancelEventArgs.cs
- IdleTimeoutMonitor.cs
- PerfProviderCollection.cs
- Attributes.cs
- GlobalProxySelection.cs
- XmlMtomReader.cs
- ReferenceEqualityComparer.cs
- ObservableCollection.cs
- ExpressionCopier.cs
- DataKey.cs
- ProgramPublisher.cs
- Menu.cs
- GuidConverter.cs
- RangeBase.cs
- IssuanceTokenProviderBase.cs
- _AutoWebProxyScriptHelper.cs
- Comparer.cs
- DecimalKeyFrameCollection.cs
- SqlSelectStatement.cs
- AutoGeneratedField.cs
- SelectionItemProviderWrapper.cs
- NodeFunctions.cs
- DoubleLink.cs
- _SslStream.cs
- CharKeyFrameCollection.cs
- LinearGradientBrush.cs
- SlotInfo.cs
- SamlAssertionDirectKeyIdentifierClause.cs
- DoubleLink.cs
- ReferencedAssembly.cs
- X509CertificateChain.cs
- initElementDictionary.cs
- WebConfigurationHostFileChange.cs
- StrongTypingException.cs
- GridViewCancelEditEventArgs.cs
- PeerApplicationLaunchInfo.cs
- VectorCollectionValueSerializer.cs
- AnnotationComponentManager.cs
- UrlAuthFailedErrorFormatter.cs
- sqlmetadatafactory.cs
- XamlPathDataSerializer.cs
- ResourceDictionaryCollection.cs
- WebHttpSecurity.cs
- COM2FontConverter.cs
- HostedTransportConfigurationManager.cs
- RemotingException.cs
- SiteMapNodeItemEventArgs.cs
- DispatchChannelSink.cs
- HtmlTable.cs
- StringResourceManager.cs
- HwndTarget.cs
- StringFunctions.cs
- SqlTriggerAttribute.cs
- Condition.cs
- arc.cs
- FileDialogCustomPlaces.cs
- ConnectionPoint.cs
- FontStyle.cs
- XmlBoundElement.cs
- ExtendedProtectionPolicyTypeConverter.cs
- basenumberconverter.cs
- NumericUpDown.cs
- MarkupCompiler.cs
- DragStartedEventArgs.cs
- HttpModule.cs
- StoreItemCollection.cs
- ThrowOnMultipleAssignment.cs
- TreeViewItem.cs
- DynamicScriptObject.cs
- OSFeature.cs
- SByte.cs
- DetailsViewCommandEventArgs.cs
- InvokePatternIdentifiers.cs
- CharAnimationBase.cs
- UnitySerializationHolder.cs
- XmlElementCollection.cs
- UnmanagedMemoryAccessor.cs
- IUnknownConstantAttribute.cs
- ObjectDataSourceDisposingEventArgs.cs
- DurableInstanceProvider.cs
- X509RecipientCertificateServiceElement.cs
- DataError.cs