Code:
/ DotNET / DotNET / 8.0 / untmp / whidbey / REDBITS / ndp / fx / src / xsp / System / Web / UI / WebControls / FormViewRow.cs / 1 / FormViewRow.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.ComponentModel; using System.Security.Permissions; ////// [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermission(SecurityAction.InheritanceDemand, Level=AspNetHostingPermissionLevel.Minimal)] public class FormViewRow : TableRow { private int _itemIndex; private DataControlRowType _rowType; private DataControlRowState _rowState; ///Represents an individual row in the ///. /// public FormViewRow(int itemIndex, DataControlRowType rowType, DataControlRowState rowState) { this._itemIndex = itemIndex; this._rowType = rowType; this._rowState = rowState; } ///Initializes a new instance of the ///class. /// public virtual int ItemIndex { get { return _itemIndex; } } ///Indicates the index of the item in the ///. This property is /// read-only. /// public virtual DataControlRowState RowState { get { return _rowState; } } ///Indicates the type of the row in the ///. /// public virtual DataControlRowType RowType { get { return _rowType; } } ///Indicates the type of the row in the ///. /// /// protected override bool OnBubbleEvent(object source, EventArgs e) { if (e is CommandEventArgs) { FormViewCommandEventArgs args = new FormViewCommandEventArgs(source, (CommandEventArgs)e); RaiseBubbleEvent(this, args); return true; } return false; } } }
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- WinFormsSecurity.cs
- MetadataCache.cs
- TryCatch.cs
- SafeMarshalContext.cs
- OptimisticConcurrencyException.cs
- SizeAnimationUsingKeyFrames.cs
- OrderByQueryOptionExpression.cs
- Effect.cs
- PathFigureCollection.cs
- ContainerSelectorActiveEvent.cs
- UnsafeNativeMethods.cs
- MessageFault.cs
- SspiSecurityToken.cs
- HelpProvider.cs
- EmptyReadOnlyDictionaryInternal.cs
- DiagnosticsConfigurationHandler.cs
- RectangleConverter.cs
- XmlSchemaAppInfo.cs
- PartialTrustHelpers.cs
- Token.cs
- TextStore.cs
- PerformanceCountersElement.cs
- ObjectListFieldsPage.cs
- XmlCharacterData.cs
- PrintPreviewDialog.cs
- EnglishPluralizationService.cs
- UncommonField.cs
- DbConnectionClosed.cs
- PageContent.cs
- NTAccount.cs
- SafeSecurityHelper.cs
- XNameTypeConverter.cs
- GeometryDrawing.cs
- SystemDropShadowChrome.cs
- HttpWebRequestElement.cs
- _OverlappedAsyncResult.cs
- ScrollBar.cs
- XmlTextEncoder.cs
- BuildResultCache.cs
- SystemWebSectionGroup.cs
- DtdParser.cs
- XmlDataSourceView.cs
- InkCollectionBehavior.cs
- SecureStringHasher.cs
- XmlSchemaSimpleType.cs
- GPPOINT.cs
- __Filters.cs
- NativeCppClassAttribute.cs
- SingleResultAttribute.cs
- WebUtility.cs
- CaseInsensitiveComparer.cs
- PreservationFileReader.cs
- HttpListener.cs
- VisualStyleElement.cs
- tabpagecollectioneditor.cs
- FileDataSourceCache.cs
- SerializationSectionGroup.cs
- HitTestParameters3D.cs
- PenCursorManager.cs
- SafeReversePInvokeHandle.cs
- Command.cs
- RowToFieldTransformer.cs
- NameSpaceEvent.cs
- Size.cs
- WindowsGraphicsCacheManager.cs
- PackageDigitalSignature.cs
- Animatable.cs
- PropertyGeneratedEventArgs.cs
- XamlReaderConstants.cs
- CachedRequestParams.cs
- RootBuilder.cs
- TimersDescriptionAttribute.cs
- ApplicationSecurityManager.cs
- LogicalExpr.cs
- HandlerFactoryCache.cs
- TransformValueSerializer.cs
- XPathSingletonIterator.cs
- XmlPreloadedResolver.cs
- DrawTreeNodeEventArgs.cs
- ColumnClickEvent.cs
- PersonalizationDictionary.cs
- KeyValueConfigurationElement.cs
- DataGridViewTopLeftHeaderCell.cs
- DbFunctionCommandTree.cs
- TemplatedMailWebEventProvider.cs
- InternalCache.cs
- StringAttributeCollection.cs
- WindowVisualStateTracker.cs
- ExternalFile.cs
- PolicyStatement.cs
- CodeCompileUnit.cs
- DbProviderConfigurationHandler.cs
- CrossContextChannel.cs
- ClickablePoint.cs
- Mappings.cs
- CodeExporter.cs
- TextSerializer.cs
- UInt16Converter.cs
- SqlDataSource.cs
- ScriptControlManager.cs