Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / WF / Activities / Rules / Parser / Exceptions.cs / 1305376 / Exceptions.cs
// ---------------------------------------------------------------------------- // Copyright (C) 2006 Microsoft Corporation All Rights Reserved // --------------------------------------------------------------------------- #define CODE_ANALYSIS using System.Diagnostics.CodeAnalysis; using System.Runtime.Serialization; using System.Security.Permissions; namespace System.Workflow.Activities.Rules { // RuleBuilderSyntaxException contains syntax error information in cases where the RuleBuilder // failed to parse the expression. [Serializable] [SuppressMessage("Microsoft.Design", "CA1064:ExceptionsShouldBePublic")] internal class RuleSyntaxException : SystemException { private int position; private int errorNumber; #region Constructors internal RuleSyntaxException() { } internal RuleSyntaxException(int errorNumber, string message, int position) : base(message) { this.errorNumber = errorNumber; this.position = position; } [SecurityPermissionAttribute(SecurityAction.Demand, SerializationFormatter = true)] private RuleSyntaxException(SerializationInfo serializeInfo, StreamingContext context) : base(serializeInfo, context) { } #endregion internal int Position { get { return position; } } internal int ErrorNumber { get { return errorNumber; } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. // Copyright (c) Microsoft Corporation. All rights reserved.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- SrgsElementFactory.cs
- ControlOperationBehavior.cs
- ResponseStream.cs
- TypeConverter.cs
- COSERVERINFO.cs
- Mappings.cs
- XmlBindingWorker.cs
- ColumnReorderedEventArgs.cs
- HScrollBar.cs
- OwnerDrawPropertyBag.cs
- AsyncOperationContext.cs
- ToolStripDropDownItem.cs
- GACMembershipCondition.cs
- _BasicClient.cs
- X509UI.cs
- LifetimeServices.cs
- SoapFormatter.cs
- Adorner.cs
- DrawTreeNodeEventArgs.cs
- CanonicalXml.cs
- EasingQuaternionKeyFrame.cs
- Pair.cs
- DataGridViewSelectedRowCollection.cs
- _SSPISessionCache.cs
- PriorityItem.cs
- WindowsTitleBar.cs
- ReadOnlyDataSource.cs
- DbQueryCommandTree.cs
- VariantWrapper.cs
- WebPartConnectionsConfigureVerb.cs
- SQLConvert.cs
- TextServicesHost.cs
- TextEffect.cs
- HTMLTextWriter.cs
- EventProviderTraceListener.cs
- ColumnWidthChangingEvent.cs
- entityreference_tresulttype.cs
- Underline.cs
- VirtualizedItemProviderWrapper.cs
- FolderBrowserDialog.cs
- ApplicationTrust.cs
- RectAnimation.cs
- Stackframe.cs
- CommonRemoteMemoryBlock.cs
- ClipboardProcessor.cs
- XmlWhitespace.cs
- MissingMemberException.cs
- UrlAuthFailedErrorFormatter.cs
- SqlInternalConnection.cs
- InputLanguageCollection.cs
- XmlEntity.cs
- ResourceManager.cs
- SqlCacheDependency.cs
- PropertyMapper.cs
- Guid.cs
- Intellisense.cs
- ComponentCache.cs
- DataProviderNameConverter.cs
- ViewGenResults.cs
- CheckableControlBaseAdapter.cs
- ListComponentEditorPage.cs
- ApplyTemplatesAction.cs
- PersonalizationEntry.cs
- Renderer.cs
- MinimizableAttributeTypeConverter.cs
- BitmapVisualManager.cs
- CodeArrayCreateExpression.cs
- X509ChainPolicy.cs
- MarkupCompilePass2.cs
- BaseCollection.cs
- InvokePatternIdentifiers.cs
- IItemProperties.cs
- ClientRolePrincipal.cs
- ButtonFieldBase.cs
- InputLangChangeRequestEvent.cs
- OleDbErrorCollection.cs
- SqlDataSourceStatusEventArgs.cs
- WebPartEditVerb.cs
- TemplateColumn.cs
- WindowsListViewScroll.cs
- SqlProfileProvider.cs
- DateTimeFormatInfo.cs
- AutoFocusStyle.xaml.cs
- AccessDataSourceWizardForm.cs
- Duration.cs
- UnaryExpressionHelper.cs
- ListDataHelper.cs
- DeploymentSectionCache.cs
- UdpSocket.cs
- HostProtectionException.cs
- ConfigurationHelpers.cs
- FileCodeGroup.cs
- OleDbCommandBuilder.cs
- PrefixQName.cs
- HttpException.cs
- BookmarkScopeHandle.cs
- OutOfProcStateClientManager.cs
- AutomationProperties.cs
- NetDataContractSerializer.cs
- StringConverter.cs