Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Description / MessageDescriptionCollection.cs / 1 / MessageDescriptionCollection.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.ServiceModel.Description { using System.Collections.Generic; using System.ServiceModel.Channels; using System.Collections.ObjectModel; using System.Runtime.Serialization; public class MessageDescriptionCollection : Collection{ internal MessageDescriptionCollection() { } public MessageDescription Find(string action) { foreach (MessageDescription description in this) { if (description != null && action == description.Action) return description; } return null; } public Collection FindAll(string action) { Collection descriptions = new Collection (); foreach (MessageDescription 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
- AccessViolationException.cs
- XmlBoundElement.cs
- EncodedStreamFactory.cs
- PartialCachingControl.cs
- SQLStringStorage.cs
- SpanIndex.cs
- NoneExcludedImageIndexConverter.cs
- RuntimeConfig.cs
- PageThemeBuildProvider.cs
- PropertyCondition.cs
- CodeDirectoryCompiler.cs
- GenerateHelper.cs
- VisualTreeFlattener.cs
- TypeSemantics.cs
- XamlBrushSerializer.cs
- MarkupObject.cs
- PageAdapter.cs
- _DigestClient.cs
- CaseInsensitiveOrdinalStringComparer.cs
- AnnotationDocumentPaginator.cs
- SponsorHelper.cs
- TypeSystem.cs
- ExpandSegmentCollection.cs
- OperationCanceledException.cs
- ValidationSummaryDesigner.cs
- EntityDataSourceQueryBuilder.cs
- HtmlMeta.cs
- TreeSet.cs
- HttpAsyncResult.cs
- RelationshipConverter.cs
- PropertiesTab.cs
- UnmanagedMemoryStreamWrapper.cs
- SrgsElementFactoryCompiler.cs
- DispatcherHookEventArgs.cs
- StylusDevice.cs
- EmissiveMaterial.cs
- SqlExpander.cs
- securitycriticaldataformultiplegetandset.cs
- TransformerConfigurationWizardBase.cs
- Rect3DValueSerializer.cs
- ClientData.cs
- Config.cs
- HwndSourceKeyboardInputSite.cs
- WebPartConnectVerb.cs
- InputLangChangeEvent.cs
- Point3DIndependentAnimationStorage.cs
- DecimalAnimationUsingKeyFrames.cs
- HMACSHA1.cs
- GeometryConverter.cs
- CounterSample.cs
- XmlToDatasetMap.cs
- BaseHashHelper.cs
- _TimerThread.cs
- GenericUriParser.cs
- EventPropertyMap.cs
- DrawingServices.cs
- XmlParserContext.cs
- SchemaCollectionCompiler.cs
- TreeNodeBindingCollection.cs
- EncoderParameter.cs
- ShadowGlyph.cs
- TextServicesProperty.cs
- StringStorage.cs
- LogEntryUtils.cs
- OleDbInfoMessageEvent.cs
- StrokeRenderer.cs
- TypeBuilderInstantiation.cs
- ParsedAttributeCollection.cs
- ReadOnlyHierarchicalDataSourceView.cs
- ClientFormsIdentity.cs
- DebugView.cs
- UnsafeNativeMethods.cs
- ValidationSummary.cs
- TimelineGroup.cs
- EpmHelper.cs
- RequiredAttributeAttribute.cs
- unsafenativemethodsother.cs
- ColorContext.cs
- _TLSstream.cs
- WebResourceUtil.cs
- MouseGesture.cs
- TreeBuilder.cs
- CodeAttachEventStatement.cs
- ArgumentValidation.cs
- VirtualizingStackPanel.cs
- PartitionerQueryOperator.cs
- _TransmitFileOverlappedAsyncResult.cs
- SystemIcmpV6Statistics.cs
- FactoryGenerator.cs
- TreeNodeSelectionProcessor.cs
- SubqueryRules.cs
- QuaternionRotation3D.cs
- NamespaceEmitter.cs
- ListChangedEventArgs.cs
- HtmlToClrEventProxy.cs
- BaseTemplateParser.cs
- CharacterString.cs
- EarlyBoundInfo.cs
- XmlAttributeHolder.cs
- WpfKnownType.cs