Code:
/ Dotnetfx_Vista_SP2 / Dotnetfx_Vista_SP2 / 8.0.50727.4016 / DEVDIV / depot / DevDiv / releases / whidbey / NetFxQFE / ndp / fx / src / CompMod / System / CodeDOM / CodeTryCatchFinallyStatement.cs / 1 / CodeTryCatchFinallyStatement.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// 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. /// ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.CodeDom { using System.Diagnostics; using System; using Microsoft.Win32; using System.Collections; using System.Runtime.InteropServices; ////// 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
- WsatServiceCertificate.cs
- BooleanToVisibilityConverter.cs
- ProcessProtocolHandler.cs
- FormViewDesigner.cs
- ReadWriteSpinLock.cs
- ProcessHost.cs
- QilCloneVisitor.cs
- ConnectionManagementSection.cs
- DataGridViewRowHeightInfoNeededEventArgs.cs
- ChildDocumentBlock.cs
- Listbox.cs
- LinqToSqlWrapper.cs
- SchemaAttDef.cs
- ComponentManagerBroker.cs
- WebPartConnection.cs
- LicenseProviderAttribute.cs
- XPathScanner.cs
- SiteMapDataSource.cs
- PropertyInfoSet.cs
- AnnotationResourceCollection.cs
- CheckBoxAutomationPeer.cs
- TextContainerChangeEventArgs.cs
- HiddenFieldPageStatePersister.cs
- Pens.cs
- ReadOnlyHierarchicalDataSource.cs
- ResolveMatchesMessageCD1.cs
- StyleCollection.cs
- XmlSchemaAttributeGroup.cs
- Rectangle.cs
- FieldNameLookup.cs
- CommonRemoteMemoryBlock.cs
- CompressionTransform.cs
- Point3DValueSerializer.cs
- WsatServiceCertificate.cs
- DateTimeOffset.cs
- AuthenticateEventArgs.cs
- HtmlMeta.cs
- BrowserDefinitionCollection.cs
- Mapping.cs
- SafeSystemMetrics.cs
- StrokeCollection.cs
- StreamMarshaler.cs
- ParserStreamGeometryContext.cs
- CodeChecksumPragma.cs
- MenuItem.cs
- WindowsTokenRoleProvider.cs
- CompilerErrorCollection.cs
- AbandonedMutexException.cs
- StylusEditingBehavior.cs
- JsonStringDataContract.cs
- FrameworkEventSource.cs
- ButtonDesigner.cs
- FactoryRecord.cs
- Scanner.cs
- ComponentManagerBroker.cs
- DropShadowEffect.cs
- ImageAnimator.cs
- DataMemberAttribute.cs
- SafeRightsManagementPubHandle.cs
- AssemblyCollection.cs
- Identifier.cs
- PersonalizableAttribute.cs
- DetailsViewModeEventArgs.cs
- InputScopeNameConverter.cs
- diagnosticsswitches.cs
- Stroke.cs
- _AcceptOverlappedAsyncResult.cs
- PropertyIDSet.cs
- HGlobalSafeHandle.cs
- BufferedStream.cs
- SqlBulkCopyColumnMapping.cs
- DbConnectionPoolCounters.cs
- GeneralTransform3D.cs
- SecurityPolicyVersion.cs
- DetectEofStream.cs
- XsltArgumentList.cs
- columnmapfactory.cs
- ServiceContractViewControl.Designer.cs
- ScalarType.cs
- LiteralTextContainerControlBuilder.cs
- OutputCacheSettingsSection.cs
- ByteStack.cs
- SplineKeyFrames.cs
- LinkLabelLinkClickedEvent.cs
- WaitForChangedResult.cs
- CommandBinding.cs
- HttpCacheVaryByContentEncodings.cs
- XsdValidatingReader.cs
- TextEditorMouse.cs
- WasHttpHandlersInstallComponent.cs
- NoClickablePointException.cs
- XmlDataSourceView.cs
- FileClassifier.cs
- SortFieldComparer.cs
- KeyManager.cs
- XmlSchemaSimpleTypeList.cs
- autovalidator.cs
- AnonymousIdentificationModule.cs
- RestClientProxyHandler.cs
- ScriptDescriptor.cs