Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / System.ServiceModel.Discovery / System / ServiceModel / Discovery / UdpContractFilterBehavior.cs / 1305376 / UdpContractFilterBehavior.cs
//---------------------------------------------------------------- // Copyright (c) Microsoft Corporation. All rights reserved. //--------------------------------------------------------------- namespace System.ServiceModel.Discovery { using System.Runtime; using System.ServiceModel.Description; using System.ServiceModel.Dispatcher; using System.ServiceModel.Channels; // This behavior sets the contract filter and unhandled operation invoker in the dispatch // runtime to avoid contract filter mismatch exceptions raised by runtime during normal operation. // Since the different discovery messages from different versions are sent over the same multicast // address and port, it is normal for an endpoint to receive the messages that are not matching // its contract. This behavior is only added to UdpDiscoveryEndpoint and UdpAnnouncementEndpoint. class UdpContractFilterBehavior : IEndpointBehavior { public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters) { } public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime) { } public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher) { if (endpointDispatcher == null) { throw FxTrace.Exception.ArgumentNull("endpointDispatcher"); } endpointDispatcher.ContractFilter = new MatchAllMessageFilter(); endpointDispatcher.DispatchRuntime.UnhandledDispatchOperation.Invoker = new UnhandledActionOperationInvoker(); } public void Validate(ServiceEndpoint endpoint) { } class UnhandledActionOperationInvoker : IOperationInvoker { public bool IsSynchronous { get { return true; } } public object[] AllocateInputs() { return EmptyArray.Allocate(1); } public object Invoke(object instance, object[] inputs, out object[] outputs) { outputs = EmptyArray.Allocate(0); return null; } public IAsyncResult InvokeBegin(object instance, object[] inputs, AsyncCallback callback, object state) { throw FxTrace.Exception.AsError(new NotImplementedException()); } public object InvokeEnd(object instance, out object[] outputs, IAsyncResult result) { throw FxTrace.Exception.AsError(new NotImplementedException()); } } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- UpdatePanelControlTrigger.cs
- RectKeyFrameCollection.cs
- LambdaCompiler.cs
- WebCategoryAttribute.cs
- RegistryDataKey.cs
- TemplateControl.cs
- TextElementAutomationPeer.cs
- VectorValueSerializer.cs
- AccessibleObject.cs
- WorkerRequest.cs
- UIElementParagraph.cs
- Root.cs
- RadioButtonBaseAdapter.cs
- activationcontext.cs
- TemplateControlCodeDomTreeGenerator.cs
- WebPartDescriptionCollection.cs
- UnSafeCharBuffer.cs
- DbParameterCollectionHelper.cs
- AlphabeticalEnumConverter.cs
- PresentationSource.cs
- Line.cs
- ActiveXHost.cs
- ObjectDisposedException.cs
- SamlSerializer.cs
- SymbolTable.cs
- CapacityStreamGeometryContext.cs
- SourceInterpreter.cs
- SqlEnums.cs
- Delay.cs
- XmlObjectSerializerWriteContext.cs
- StringInfo.cs
- FilterQueryOptionExpression.cs
- ToolStripPanel.cs
- NominalTypeEliminator.cs
- TaskCanceledException.cs
- WebPartTransformerAttribute.cs
- DataSourceCache.cs
- Size3DValueSerializer.cs
- CodeTryCatchFinallyStatement.cs
- PageBuildProvider.cs
- FormClosedEvent.cs
- RoleServiceManager.cs
- NameValueSectionHandler.cs
- RepeaterCommandEventArgs.cs
- SerialReceived.cs
- DataGridTablesFactory.cs
- ResXBuildProvider.cs
- Int64AnimationBase.cs
- Shape.cs
- ValidationErrorInfo.cs
- SignatureTargetIdManager.cs
- FindCriteriaApril2005.cs
- SqlXml.cs
- RtfControlWordInfo.cs
- InternalRelationshipCollection.cs
- ConfigurationManagerInternalFactory.cs
- ColumnWidthChangingEvent.cs
- XmlWriterTraceListener.cs
- ConfigurationSchemaErrors.cs
- Context.cs
- KeyValueSerializer.cs
- SectionRecord.cs
- BitmapDownload.cs
- StaticResourceExtension.cs
- FilteredAttributeCollection.cs
- SerialPinChanges.cs
- InstanceDataCollectionCollection.cs
- OutArgumentConverter.cs
- basevalidator.cs
- DeadCharTextComposition.cs
- HeaderCollection.cs
- EditorAttributeInfo.cs
- LocalizableResourceBuilder.cs
- PlainXmlSerializer.cs
- odbcmetadatafactory.cs
- QilVisitor.cs
- SqlCommandBuilder.cs
- PreProcessor.cs
- AutoScrollHelper.cs
- TextDocumentView.cs
- SpecialNameAttribute.cs
- StyleSelector.cs
- ActivatedMessageQueue.cs
- HttpRuntimeSection.cs
- NavigationFailedEventArgs.cs
- CheckableControlBaseAdapter.cs
- MapPathBasedVirtualPathProvider.cs
- AsymmetricSignatureFormatter.cs
- ObjectConverter.cs
- OneToOneMappingSerializer.cs
- AttributeAction.cs
- Stream.cs
- BitmapEffectInput.cs
- TypeExtension.cs
- XPathChildIterator.cs
- StreamWithDictionary.cs
- UIElement.cs
- DecimalAnimationUsingKeyFrames.cs
- XmlDictionaryReaderQuotasElement.cs
- AnnotationAdorner.cs