Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / whidbey / netfxsp / ndp / fx / src / xsp / System / Web / UI / WebControls / CreateUserWizardStep.cs / 5 / CreateUserWizardStep.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.UI.WebControls { using System; using System.Collections; using System.ComponentModel; using System.Security.Permissions; using System.Web; using System.Web.UI; [AspNetHostingPermission(SecurityAction.LinkDemand, Level=AspNetHostingPermissionLevel.Minimal)] [ Browsable(false), ] public sealed class CreateUserWizardStep : TemplatedWizardStep { [ Browsable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public override bool AllowReturn { get { return AllowReturnInternal; } set { throw new InvalidOperationException(SR.GetString(SR.CreateUserWizardStep_AllowReturnCannotBeSet)); } } internal bool AllowReturnInternal { get { object val = ViewState["AllowReturnInternal"]; return((val == null) ? true : (bool)val); } set { ViewState["AllowReturnInternal"] = value; } } internal override Wizard Owner { get { return base.Owner; } set { if (value is CreateUserWizard || value == null) { base.Owner = value; } else { throw new HttpException(SR.GetString(SR.CreateUserWizardStep_OnlyAllowedInCreateUserWizard)); } } } ////// [ Localizable(true), WebSysDefaultValue(SR.CreateUserWizard_DefaultCreateUserTitleText), ] public override string Title { get { string title = TitleInternal; return (title != null) ? title : SR.GetString(SR.CreateUserWizard_DefaultCreateUserTitleText); } set { base.Title = value; } } [ Browsable(false), Themeable(false), Filterable(false), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden), ] public override WizardStepType StepType { get { return base.StepType; } set { throw new InvalidOperationException(SR.GetString(SR.CreateUserWizardStep_StepTypeCannotBeSet)); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.Gets or sets the title on the ///.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- EventLog.cs
- BitmapVisualManager.cs
- XmlWriter.cs
- WrapPanel.cs
- HorizontalAlignConverter.cs
- XmlParserContext.cs
- _ChunkParse.cs
- SQLStringStorage.cs
- ConnectionStringsExpressionBuilder.cs
- NegatedConstant.cs
- EncodingNLS.cs
- ObjectAssociationEndMapping.cs
- ComponentDispatcherThread.cs
- AxisAngleRotation3D.cs
- CompositeActivityTypeDescriptorProvider.cs
- _DomainName.cs
- SmiRecordBuffer.cs
- QilGenerator.cs
- TableLayoutStyleCollection.cs
- EventLogPermission.cs
- HandlerMappingMemo.cs
- EntityType.cs
- TrustLevelCollection.cs
- Variable.cs
- RepeatButtonAutomationPeer.cs
- CompilationUtil.cs
- RangeValidator.cs
- CodeSnippetTypeMember.cs
- Timeline.cs
- VarRemapper.cs
- followingsibling.cs
- HttpDateParse.cs
- SqlMethodCallConverter.cs
- ToolBar.cs
- ReversePositionQuery.cs
- ExternalCalls.cs
- EntityDesignerBuildProvider.cs
- OracleTransaction.cs
- DataBoundControlHelper.cs
- TextTreeRootNode.cs
- Pair.cs
- Transform3D.cs
- ExceptionAggregator.cs
- DescendentsWalkerBase.cs
- ProtocolsConfiguration.cs
- CommunicationException.cs
- PersistenceTypeAttribute.cs
- ProfileSettingsCollection.cs
- EventEntry.cs
- TextTreeExtractElementUndoUnit.cs
- PlacementWorkspace.cs
- MailMessage.cs
- TypeInfo.cs
- WorkflowMarkupSerializer.cs
- LineMetrics.cs
- WebPartCatalogCloseVerb.cs
- ApplicationGesture.cs
- MembershipAdapter.cs
- Set.cs
- PointHitTestResult.cs
- HierarchicalDataTemplate.cs
- Animatable.cs
- WriteableOnDemandPackagePart.cs
- ExceptionUtil.cs
- ResourceAssociationTypeEnd.cs
- MachineKeyConverter.cs
- Span.cs
- RightsManagementEncryptionTransform.cs
- StreamMarshaler.cs
- PointAnimationClockResource.cs
- DataRowView.cs
- MessageSmuggler.cs
- ToolboxDataAttribute.cs
- MessageQueueInstaller.cs
- PieceDirectory.cs
- OpenFileDialog.cs
- InputChannel.cs
- CheckBoxAutomationPeer.cs
- PageAdapter.cs
- InputMethodStateTypeInfo.cs
- SimpleWebHandlerParser.cs
- RemotingService.cs
- IndexedString.cs
- DecimalKeyFrameCollection.cs
- RecognizerStateChangedEventArgs.cs
- RoleService.cs
- StreamingContext.cs
- ArraySegment.cs
- WindowInteractionStateTracker.cs
- ZipIOCentralDirectoryBlock.cs
- RbTree.cs
- Group.cs
- StrongTypingException.cs
- SignatureToken.cs
- BaseParaClient.cs
- RayMeshGeometry3DHitTestResult.cs
- XmlSchemaAppInfo.cs
- AutomationIdentifier.cs
- EdmFunctions.cs
- SqlCaseSimplifier.cs