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]
Collection filters;
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
- MD5.cs
- FreezableOperations.cs
- MDIControlStrip.cs
- Effect.cs
- XamlContextStack.cs
- LicenseContext.cs
- GeometryValueSerializer.cs
- WebPartConnectionsEventArgs.cs
- DropDownButton.cs
- DictionaryItemsCollection.cs
- PageContent.cs
- ClientBuildManagerTypeDescriptionProviderBridge.cs
- InvokeBinder.cs
- sqlmetadatafactory.cs
- FrameworkContentElement.cs
- MergablePropertyAttribute.cs
- TypeUtil.cs
- PriorityChain.cs
- SqlCacheDependencyDatabaseCollection.cs
- ExpanderAutomationPeer.cs
- NavigationExpr.cs
- NetworkInterface.cs
- UseLicense.cs
- ActivationArguments.cs
- ImageAutomationPeer.cs
- AsyncCompletedEventArgs.cs
- _ConnectionGroup.cs
- SqlNotificationRequest.cs
- DataSourceGeneratorException.cs
- GridViewRowEventArgs.cs
- AdRotator.cs
- TypedCompletedAsyncResult.cs
- SocketException.cs
- WindowAutomationPeer.cs
- TextBlock.cs
- DependencyObjectType.cs
- ImpersonationContext.cs
- MessageSmuggler.cs
- DataRecord.cs
- Code.cs
- IsolatedStoragePermission.cs
- HtmlWindow.cs
- HtmlFormAdapter.cs
- HyperLinkStyle.cs
- DataContract.cs
- TargetParameterCountException.cs
- TypeToken.cs
- CodeDirectiveCollection.cs
- AssemblyHelper.cs
- SvcMapFile.cs
- MonikerProxyAttribute.cs
- ObjectDataSourceEventArgs.cs
- FileSystemInfo.cs
- Queue.cs
- IsolatedStorageSecurityState.cs
- ParameterReplacerVisitor.cs
- control.ime.cs
- AspCompat.cs
- DataConnectionHelper.cs
- BinHexEncoder.cs
- Matrix3D.cs
- WebResourceUtil.cs
- DataControlPagerLinkButton.cs
- IdentitySection.cs
- TimeoutException.cs
- ContentType.cs
- SettingsAttributes.cs
- WebPartMenu.cs
- MSG.cs
- WebHostUnsafeNativeMethods.cs
- AudioException.cs
- DelegateArgument.cs
- FileDialog_Vista.cs
- FormsAuthentication.cs
- Evidence.cs
- TextRangeEdit.cs
- DodSequenceMerge.cs
- EventBuilder.cs
- WCFBuildProvider.cs
- ValueQuery.cs
- FormViewDeleteEventArgs.cs
- ConnectionsZone.cs
- AccessDataSource.cs
- KeyToListMap.cs
- TreeNodeConverter.cs
- Int16Converter.cs
- TextLineResult.cs
- Rect.cs
- TriggerAction.cs
- TextModifierScope.cs
- SecurityTokenException.cs
- ToolboxBitmapAttribute.cs
- TraceListener.cs
- UpdatableWrapper.cs
- BasePattern.cs
- MatrixValueSerializer.cs
- securestring.cs
- DataDocumentXPathNavigator.cs
- CodeTypeReference.cs
- MultipartIdentifier.cs