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
- Bits.cs
- InvalidChannelBindingException.cs
- MDIWindowDialog.cs
- Stream.cs
- CursorConverter.cs
- _ConnectStream.cs
- DetailsViewDeletedEventArgs.cs
- Parallel.cs
- StyleHelper.cs
- WindowInteractionStateTracker.cs
- ProtectedConfigurationProviderCollection.cs
- srgsitem.cs
- UrlMappingCollection.cs
- AnnotationStore.cs
- SamlAuthenticationStatement.cs
- IndexedGlyphRun.cs
- securitycriticaldata.cs
- CharacterMetrics.cs
- TextTreeDeleteContentUndoUnit.cs
- SyndicationSerializer.cs
- ScrollItemProviderWrapper.cs
- TerminatorSinks.cs
- DbgCompiler.cs
- ListViewDeleteEventArgs.cs
- Win32.cs
- TableLayoutCellPaintEventArgs.cs
- PropertyEmitter.cs
- EmptyWorkItem.cs
- EnvelopedSignatureTransform.cs
- CaseCqlBlock.cs
- ConnectionStringSettingsCollection.cs
- GestureRecognizer.cs
- PasswordDeriveBytes.cs
- DrawingAttributeSerializer.cs
- DigestComparer.cs
- WebHttpEndpoint.cs
- WebBrowsableAttribute.cs
- Substitution.cs
- ListViewPagedDataSource.cs
- X509ClientCertificateAuthentication.cs
- SoapExtensionStream.cs
- Filter.cs
- CngAlgorithm.cs
- ReferenceSchema.cs
- WmpBitmapDecoder.cs
- XmlSchemaSimpleType.cs
- TdsParameterSetter.cs
- ProxyAttribute.cs
- Stroke2.cs
- DataGridViewToolTip.cs
- VisualCollection.cs
- TraceUtility.cs
- SimpleTypeResolver.cs
- PolyBezierSegmentFigureLogic.cs
- X509Certificate2.cs
- DescendentsWalkerBase.cs
- SHA1CryptoServiceProvider.cs
- BitmapEffectDrawingContextState.cs
- ObjectDataSourceEventArgs.cs
- Binding.cs
- DataServiceRequestArgs.cs
- QuaternionRotation3D.cs
- InvalidCastException.cs
- TimeSpanStorage.cs
- DisplayInformation.cs
- XmlSchemaSequence.cs
- CultureTable.cs
- UseLicense.cs
- PositiveTimeSpanValidator.cs
- PeerResolverElement.cs
- WebPartTransformerCollection.cs
- ConfigXmlAttribute.cs
- WSMessageEncoding.cs
- TaskFileService.cs
- DataDocumentXPathNavigator.cs
- MarginCollapsingState.cs
- FixedSOMGroup.cs
- ADConnectionHelper.cs
- TextSelectionProcessor.cs
- Preprocessor.cs
- SqlBooleanMismatchVisitor.cs
- DbSetClause.cs
- SecurityTokenAuthenticator.cs
- Bitmap.cs
- RelationshipType.cs
- RSAPKCS1KeyExchangeFormatter.cs
- DataServiceQueryOfT.cs
- DBSchemaRow.cs
- JsonReaderWriterFactory.cs
- BufferModesCollection.cs
- CompiledQuery.cs
- EventNotify.cs
- DecimalKeyFrameCollection.cs
- FormatSelectingMessageInspector.cs
- login.cs
- ServerIdentity.cs
- XmlILModule.cs
- XmlSerializer.cs
- XamlContextStack.cs
- CustomAttributeFormatException.cs