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
- Size.cs
- Vector3D.cs
- ColumnCollection.cs
- SafeLocalAllocation.cs
- Pair.cs
- ServicePoint.cs
- MarkupCompilePass2.cs
- UrlPath.cs
- SystemIcmpV6Statistics.cs
- SmtpTransport.cs
- ServicePerformanceCounters.cs
- SchemaElement.cs
- OciHandle.cs
- Italic.cs
- DbDataSourceEnumerator.cs
- DataStreamFromComStream.cs
- ToolZone.cs
- Table.cs
- SelectedGridItemChangedEvent.cs
- MatrixValueSerializer.cs
- SystemParameters.cs
- GeometryConverter.cs
- XMLSyntaxException.cs
- ThousandthOfEmRealDoubles.cs
- ExpandedWrapper.cs
- SmiRecordBuffer.cs
- XamlSerializer.cs
- InvokeProviderWrapper.cs
- AuthStoreRoleProvider.cs
- PrinterUnitConvert.cs
- CommonGetThemePartSize.cs
- ByteStreamBufferedMessageData.cs
- TypeBuilderInstantiation.cs
- TripleDES.cs
- ResizeBehavior.cs
- WebPartsPersonalizationAuthorization.cs
- sapiproxy.cs
- Encoder.cs
- SettingsPropertyWrongTypeException.cs
- TextServicesManager.cs
- AnnotationComponentChooser.cs
- SkipQueryOptionExpression.cs
- MatrixCamera.cs
- Certificate.cs
- ParameterModifier.cs
- ZipPackagePart.cs
- PropertyOverridesTypeEditor.cs
- CodeCastExpression.cs
- DelegatingTypeDescriptionProvider.cs
- AudioLevelUpdatedEventArgs.cs
- GrammarBuilder.cs
- ClientConfigurationSystem.cs
- WebHostedComPlusServiceHost.cs
- SchemaConstraints.cs
- UnauthorizedAccessException.cs
- ConfigurationPropertyAttribute.cs
- FieldNameLookup.cs
- ResourceSet.cs
- ClientUtils.cs
- Label.cs
- TagPrefixAttribute.cs
- PixelFormats.cs
- DataListItemCollection.cs
- OracleFactory.cs
- FileLevelControlBuilderAttribute.cs
- XPathParser.cs
- IDispatchConstantAttribute.cs
- DPTypeDescriptorContext.cs
- FieldNameLookup.cs
- DesignerVerb.cs
- Base64Decoder.cs
- SingleTagSectionHandler.cs
- PageStatePersister.cs
- DataColumn.cs
- Binding.cs
- XsltLoader.cs
- MultiView.cs
- SchemaElementDecl.cs
- FacetValues.cs
- ManipulationStartingEventArgs.cs
- _DigestClient.cs
- IPGlobalProperties.cs
- HttpListenerPrefixCollection.cs
- HttpCacheParams.cs
- MemberDescriptor.cs
- PeerContact.cs
- Baml2006ReaderFrame.cs
- DataRowExtensions.cs
- BufferedGraphicsContext.cs
- TextServicesCompartmentEventSink.cs
- SqlCharStream.cs
- ComponentCache.cs
- VariableQuery.cs
- SystemDiagnosticsSection.cs
- ResourceContainerWrapper.cs
- FileLogRecord.cs
- SoapInteropTypes.cs
- Thickness.cs
- _ShellExpression.cs
- SmiTypedGetterSetter.cs