Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Dispatcher / MultipleFilterMatchesException.cs / 1 / MultipleFilterMatchesException.cs
//------------------------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------------------------- namespace System.ServiceModel.Dispatcher { using System; using System.ServiceModel.Channels; using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; [Serializable] public class MultipleFilterMatchesException : SystemException { [NonSerialized] Collectionfilters; protected MultipleFilterMatchesException(SerializationInfo info, StreamingContext context) : base(info, context) { this.filters = null; } public MultipleFilterMatchesException() : this(SR.GetString(SR.FilterMultipleMatches)) { } public MultipleFilterMatchesException(string message) : this(message, null, null) { } public MultipleFilterMatchesException(string message, Exception innerException) : this(message, innerException, null) { } public MultipleFilterMatchesException(string message, Collection filters) : this(message, null, filters) { } public MultipleFilterMatchesException(string message, Exception innerException, Collection filters) : base(message, innerException) { this.filters = filters; } public Collection Filters { get { return this.filters; } } } } // 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
- RecognizerStateChangedEventArgs.cs
- Rotation3DAnimationBase.cs
- RouteValueExpressionBuilder.cs
- SqlStream.cs
- TextTreeUndo.cs
- RuleSetReference.cs
- XmlDataSource.cs
- EventItfInfo.cs
- XmlArrayItemAttributes.cs
- Brush.cs
- RadioButtonPopupAdapter.cs
- HtmlControlAdapter.cs
- XamlUtilities.cs
- CodeLinePragma.cs
- TagMapCollection.cs
- BitStream.cs
- FaultCallbackWrapper.cs
- RectangleConverter.cs
- RequestQueryProcessor.cs
- BitmapEffectInput.cs
- RadioButtonStandardAdapter.cs
- DependencyObjectValidator.cs
- DataGridViewCellConverter.cs
- XmlWrappingReader.cs
- Model3DGroup.cs
- SqlDataSourceCustomCommandPanel.cs
- TreeSet.cs
- TextEditorTyping.cs
- AutomationPatternInfo.cs
- HealthMonitoringSection.cs
- Utils.cs
- HandleTable.cs
- BaseDataListComponentEditor.cs
- DataContractSerializer.cs
- FunctionParameter.cs
- OleServicesContext.cs
- Decorator.cs
- VBCodeProvider.cs
- DispatcherHookEventArgs.cs
- ConstraintCollection.cs
- BoolExpressionVisitors.cs
- ManagementNamedValueCollection.cs
- InteropEnvironment.cs
- WsdlBuildProvider.cs
- WebPartMenu.cs
- ObjectAnimationBase.cs
- StagingAreaInputItem.cs
- PerformanceCounterLib.cs
- MetadataHelper.cs
- GridItemPatternIdentifiers.cs
- XmlAttributeOverrides.cs
- PieceNameHelper.cs
- ProfilePropertyNameValidator.cs
- CreateUserErrorEventArgs.cs
- InputReport.cs
- AutoResetEvent.cs
- Filter.cs
- AddInPipelineAttributes.cs
- OpCodes.cs
- GPRECT.cs
- VectorAnimationUsingKeyFrames.cs
- EntityTransaction.cs
- ColumnBinding.cs
- XamlDesignerSerializationManager.cs
- VisualStyleRenderer.cs
- DropDownButton.cs
- WCFServiceClientProxyGenerator.cs
- ClearCollection.cs
- PartManifestEntry.cs
- BitmapEffectCollection.cs
- AddressHeader.cs
- SoapSchemaMember.cs
- ConfigErrorGlyph.cs
- ClickablePoint.cs
- ListQueryResults.cs
- IDReferencePropertyAttribute.cs
- CharacterBufferReference.cs
- HelpProvider.cs
- codemethodreferenceexpression.cs
- LocatorPartList.cs
- XLinq.cs
- Compilation.cs
- WindowsSpinner.cs
- DrawListViewItemEventArgs.cs
- MappingItemCollection.cs
- Pair.cs
- UnmanagedMemoryStreamWrapper.cs
- ContainerActivationHelper.cs
- ImageDesigner.cs
- TextContainerHelper.cs
- SchemaElementDecl.cs
- UnmanagedMemoryAccessor.cs
- AttachedPropertyMethodSelector.cs
- SqlGenerator.cs
- MultiPageTextView.cs
- DummyDataSource.cs
- VisualStyleRenderer.cs
- CodeIdentifier.cs
- GraphicsPath.cs
- LinearGradientBrush.cs