Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / CompMod / System / CodeDOM / CodeTryCatchFinallyStatement.cs / 1305376 / CodeTryCatchFinallyStatement.cs
//------------------------------------------------------------------------------ //// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// Represents a try block, with any number of catch clauses and an /// optionally finally block. /// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTryCatchFinallyStatement : CodeStatement { private CodeStatementCollection tryStatments = new CodeStatementCollection(); private CodeStatementCollection finallyStatments = new CodeStatementCollection(); private CodeCatchClauseCollection catchClauses = new CodeCatchClauseCollection(); ////// public CodeTryCatchFinallyStatement() { } ////// Initializes a new instance of ///. /// /// public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses) { TryStatements.AddRange(tryStatements); CatchClauses.AddRange(catchClauses); } ////// Initializes a new instance of ///using the specified statements to try and catch /// clauses. /// /// public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements) { TryStatements.AddRange(tryStatements); CatchClauses.AddRange(catchClauses); FinallyStatements.AddRange(finallyStatements); } ////// Initializes a new instance of ///using the specified statements to /// try, catch clauses, and finally statements. /// /// public CodeStatementCollection TryStatements { get { return tryStatments; } } ////// Gets or sets /// the try statements to try. /// ////// public CodeCatchClauseCollection CatchClauses { get { return catchClauses; } } ////// Gets or sets the catch clauses to use. /// ////// public CodeStatementCollection FinallyStatements { get { return finallyStatments; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ ///// Gets or sets /// the finally statements to use. /// ///// // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ///[....] // Copyright (c) Microsoft Corporation. All rights reserved. ///// Represents a try block, with any number of catch clauses and an /// optionally finally block. /// [ ClassInterface(ClassInterfaceType.AutoDispatch), ComVisible(true), Serializable, ] public class CodeTryCatchFinallyStatement : CodeStatement { private CodeStatementCollection tryStatments = new CodeStatementCollection(); private CodeStatementCollection finallyStatments = new CodeStatementCollection(); private CodeCatchClauseCollection catchClauses = new CodeCatchClauseCollection(); ////// public CodeTryCatchFinallyStatement() { } ////// Initializes a new instance of ///. /// /// public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses) { TryStatements.AddRange(tryStatements); CatchClauses.AddRange(catchClauses); } ////// Initializes a new instance of ///using the specified statements to try and catch /// clauses. /// /// public CodeTryCatchFinallyStatement(CodeStatement[] tryStatements, CodeCatchClause[] catchClauses, CodeStatement[] finallyStatements) { TryStatements.AddRange(tryStatements); CatchClauses.AddRange(catchClauses); FinallyStatements.AddRange(finallyStatements); } ////// Initializes a new instance of ///using the specified statements to /// try, catch clauses, and finally statements. /// /// public CodeStatementCollection TryStatements { get { return tryStatments; } } ////// Gets or sets /// the try statements to try. /// ////// public CodeCatchClauseCollection CatchClauses { get { return catchClauses; } } ////// Gets or sets the catch clauses to use. /// ////// public CodeStatementCollection FinallyStatements { get { return finallyStatments; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007./// Gets or sets /// the finally statements to use. /// ///
Link Menu
This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- Delegate.cs
- RNGCryptoServiceProvider.cs
- IgnoreFileBuildProvider.cs
- CharAnimationUsingKeyFrames.cs
- UriTemplate.cs
- ToolBarButton.cs
- ContextStaticAttribute.cs
- MdiWindowListStrip.cs
- Repeater.cs
- FatalException.cs
- PermissionListSet.cs
- ToolStripItemCollection.cs
- ScrollItemPattern.cs
- PersonalizationProviderHelper.cs
- CompressEmulationStream.cs
- DescendentsWalkerBase.cs
- Run.cs
- HashJoinQueryOperatorEnumerator.cs
- DbInsertCommandTree.cs
- ReturnType.cs
- ScrollBar.cs
- IndexedGlyphRun.cs
- SoapMessage.cs
- RepeaterItem.cs
- XmlSerializer.cs
- AttachedAnnotation.cs
- WebPartHeaderCloseVerb.cs
- BitmapEffect.cs
- UnauthorizedWebPart.cs
- DataGridViewRowPostPaintEventArgs.cs
- WrappingXamlSchemaContext.cs
- DynamicResourceExtension.cs
- MessageBox.cs
- Tag.cs
- WebPartAuthorizationEventArgs.cs
- PrinterResolution.cs
- LifetimeMonitor.cs
- ResourceCategoryAttribute.cs
- ScriptComponentDescriptor.cs
- SmtpNegotiateAuthenticationModule.cs
- TableLayoutColumnStyleCollection.cs
- MultiByteCodec.cs
- Preprocessor.cs
- DesignerInterfaces.cs
- TemplateControl.cs
- CachedPathData.cs
- SelectedDatesCollection.cs
- _Win32.cs
- ToolStripItem.cs
- MsmqPoisonMessageException.cs
- Error.cs
- DocumentViewerConstants.cs
- RbTree.cs
- AppDomainFactory.cs
- Shared.cs
- StrokeNodeOperations2.cs
- LocalizedNameDescriptionPair.cs
- HttpInputStream.cs
- RotateTransform3D.cs
- ZipIOZip64EndOfCentralDirectoryLocatorBlock.cs
- MSAAEventDispatcher.cs
- SafeRegistryHandle.cs
- CredentialManagerDialog.cs
- KeyEventArgs.cs
- ChangePassword.cs
- CopyAction.cs
- SystemTcpStatistics.cs
- Nullable.cs
- DocumentPage.cs
- ReferentialConstraintRoleElement.cs
- HighContrastHelper.cs
- HtmlControlAdapter.cs
- Tokenizer.cs
- XmlImplementation.cs
- ClientOptions.cs
- Composition.cs
- ElementHost.cs
- ToolboxComponentsCreatedEventArgs.cs
- recordstatefactory.cs
- IPipelineRuntime.cs
- MbpInfo.cs
- OledbConnectionStringbuilder.cs
- MsdtcWrapper.cs
- Menu.cs
- PrinterResolution.cs
- DataGridViewBand.cs
- DiscreteKeyFrames.cs
- AsymmetricSignatureDeformatter.cs
- TaiwanCalendar.cs
- ClickablePoint.cs
- LogicalExpr.cs
- ClaimTypeElementCollection.cs
- ByteStreamGeometryContext.cs
- TextContainer.cs
- ConfigXmlWhitespace.cs
- Highlights.cs
- UDPClient.cs
- ResourceDescriptionAttribute.cs
- WorkflowTransactionOptions.cs
- ProgressBar.cs