Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Description / FaultDescriptionCollection.cs / 1 / FaultDescriptionCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Description { using System.Collections.Generic; using System.Collections.ObjectModel; using System.Runtime.Serialization; public class FaultDescriptionCollection : Collection{ internal FaultDescriptionCollection() { } public FaultDescription Find(string action) { foreach (FaultDescription description in this) { if (description != null && action == description.Action) return description; } return null; } public Collection FindAll(string action) { Collection descriptions = new Collection (); foreach (FaultDescription description in this) { if (description != null && action == description.Action) descriptions.Add(description); } return descriptions; } } } // 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
- DragDropHelper.cs
- IHttpResponseInternal.cs
- ButtonColumn.cs
- ListBox.cs
- ChainOfDependencies.cs
- SingleTagSectionHandler.cs
- Viewport3DAutomationPeer.cs
- Quaternion.cs
- AtomServiceDocumentSerializer.cs
- StaticResourceExtension.cs
- CriticalFinalizerObject.cs
- WebPartConnection.cs
- DataTableNewRowEvent.cs
- WorkflowServiceOperationListItem.cs
- VectorValueSerializer.cs
- SqlServices.cs
- DragSelectionMessageFilter.cs
- EncodingStreamWrapper.cs
- DirectionalLight.cs
- ParseElement.cs
- DrawingBrush.cs
- Helpers.cs
- FileInfo.cs
- RowToParametersTransformer.cs
- CodeIterationStatement.cs
- ConsoleKeyInfo.cs
- Utility.cs
- EntityDataSourceView.cs
- GcHandle.cs
- SchemaElementDecl.cs
- MulticastDelegate.cs
- UriTemplatePathSegment.cs
- LocatorManager.cs
- ObjectDisposedException.cs
- WorkflowApplicationAbortedEventArgs.cs
- WorkflowServiceHost.cs
- TableRowGroupCollection.cs
- Internal.cs
- ActiveXSite.cs
- Configuration.cs
- BoolExpression.cs
- ExpressionEvaluator.cs
- CollectionMarkupSerializer.cs
- PixelShader.cs
- DesigntimeLicenseContextSerializer.cs
- ConfigurationManagerHelper.cs
- RoleBoolean.cs
- Compiler.cs
- RouteItem.cs
- GenericUriParser.cs
- DrawListViewSubItemEventArgs.cs
- TraceHandler.cs
- SelectionItemPattern.cs
- XamlInt32CollectionSerializer.cs
- AssemblyCacheEntry.cs
- httpapplicationstate.cs
- ProcessRequestArgs.cs
- TextElementCollection.cs
- SerialErrors.cs
- EventlogProvider.cs
- XamlDesignerSerializationManager.cs
- SqlDataSourceCommandParser.cs
- ReliabilityContractAttribute.cs
- ModelItemKeyValuePair.cs
- xsdvalidator.cs
- CustomAttribute.cs
- CssClassPropertyAttribute.cs
- StylusShape.cs
- GridViewPageEventArgs.cs
- StringConcat.cs
- ToolTipService.cs
- SqlTransaction.cs
- DbSetClause.cs
- DropSourceBehavior.cs
- DoubleCollection.cs
- SiteMembershipCondition.cs
- PopOutPanel.cs
- SqlProviderManifest.cs
- KeyedCollection.cs
- TypedElement.cs
- ProcessDesigner.cs
- RemoveStoryboard.cs
- FontSource.cs
- _NestedSingleAsyncResult.cs
- Light.cs
- ClientSection.cs
- FigureParagraph.cs
- GC.cs
- DesignSurface.cs
- X509CertificateStore.cs
- XPathParser.cs
- ImageFormatConverter.cs
- MemberHolder.cs
- GridErrorDlg.cs
- FontClient.cs
- NumericUpDown.cs
- OrderedDictionaryStateHelper.cs
- XamlPoint3DCollectionSerializer.cs
- InstanceLockedException.cs
- Schema.cs