Code:
/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / NetFx35 / System.ServiceModel.Web / System / ServiceModel / Dispatcher / UriTemplateDispatchFormatter.cs / 1 / UriTemplateDispatchFormatter.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- #pragma warning disable 1634, 1691 namespace System.ServiceModel.Dispatcher { using System; using System.Collections; using System.Collections.Generic; using System.Collections.Specialized; using System.Globalization; using System.Reflection; using System.ServiceModel; using System.ServiceModel.Channels; using System.ServiceModel.Description; using System.ServiceModel.Diagnostics; using System.Text; using System.Web; using System.Xml; using System.ServiceModel.Web; using System.Diagnostics; class UriTemplateDispatchFormatter : IDispatchMessageFormatter { internal DictionarypathMapping; internal Dictionary > queryMapping; Uri baseAddress; IDispatchMessageFormatter inner; string operationName; QueryStringConverter qsc; int totalNumUTVars; UriTemplate uriTemplate; public UriTemplateDispatchFormatter(OperationDescription operationDescription, IDispatchMessageFormatter inner, QueryStringConverter qsc, string contractName, Uri baseAddress) { this.inner = inner; this.qsc = qsc; this.baseAddress = baseAddress; this.operationName = operationDescription.Name; UriTemplateClientFormatter.Populate(out this.pathMapping, out this.queryMapping, out this.totalNumUTVars, out this.uriTemplate, operationDescription, qsc, contractName); } public void DeserializeRequest(Message message, object[] parameters) { object[] innerParameters = new object[parameters.Length - this.totalNumUTVars]; if (innerParameters.Length != 0) { this.inner.DeserializeRequest(message, innerParameters); } int j = 0; UriTemplateMatch utmr = null; string UTMRName = IncomingWebRequestContext.UriTemplateMatchResultsPropertyName; if (message.Properties.ContainsKey(UTMRName)) { utmr = message.Properties[UTMRName] as UriTemplateMatch; } else { if (message.Headers.To != null && message.Headers.To.IsAbsoluteUri) { utmr = this.uriTemplate.Match(this.baseAddress, message.Headers.To); } } NameValueCollection nvc = (utmr == null) ? new NameValueCollection() : utmr.BoundVariables; for (int i = 0; i < parameters.Length; ++i) { if (this.pathMapping.ContainsKey(i) && utmr != null) { parameters[i] = nvc[this.pathMapping[i]]; } else if (this.queryMapping.ContainsKey(i) && utmr != null) { string queryVal = nvc[this.queryMapping[i].Key]; parameters[i] = this.qsc.ConvertStringToValue(queryVal, this.queryMapping[i].Value); } else { parameters[i] = innerParameters[j]; ++j; } } if (DiagnosticUtility.ShouldTraceInformation) { if (utmr != null) { foreach (string key in utmr.QueryParameters.Keys) { bool isParameterIgnored = true; foreach (KeyValuePair kvp in this.queryMapping.Values) { if (String.Compare(key, kvp.Key, StringComparison.OrdinalIgnoreCase) == 0) { isParameterIgnored = false; break; } } if (isParameterIgnored) { DiagnosticUtility.DiagnosticTrace.TraceEvent(TraceEventType.Information, TraceCode.WebUnknownQueryParameterIgnored, SR2.GetString(SR2.TraceCodeWebRequestUnknownQueryParameterIgnored, key, operationName)); } } } } } public Message SerializeReply(MessageVersion messageVersion, object[] parameters, object result) { throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(new NotSupportedException(SR2.GetString(SR2.QueryStringFormatterOperationNotSupportedServerSide))); } } } // 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
- WsdlBuildProvider.cs
- WebPartConnectionsCloseVerb.cs
- References.cs
- ToolStripSettings.cs
- ErrorFormatter.cs
- DynamicValueConverter.cs
- CommunicationObjectManager.cs
- ResetableIterator.cs
- EntityDataSource.cs
- OdbcStatementHandle.cs
- DirectoryInfo.cs
- ToolBarTray.cs
- XmlSchemaFacet.cs
- GetIndexBinder.cs
- ResourceDictionaryCollection.cs
- WeakRefEnumerator.cs
- Message.cs
- Semaphore.cs
- DataKeyCollection.cs
- DynamicResourceExtension.cs
- RegexStringValidatorAttribute.cs
- WinCategoryAttribute.cs
- MarkupObject.cs
- Formatter.cs
- NetMsmqBindingElement.cs
- RectKeyFrameCollection.cs
- HttpModulesSection.cs
- GuidConverter.cs
- DrawingDrawingContext.cs
- ButtonBaseAdapter.cs
- Helper.cs
- TextWriterTraceListener.cs
- BitmapEffectInputConnector.cs
- SoapSchemaMember.cs
- KoreanLunisolarCalendar.cs
- BamlRecordReader.cs
- ReferentialConstraint.cs
- MD5CryptoServiceProvider.cs
- TextSerializer.cs
- SortAction.cs
- Atom10FeedFormatter.cs
- WinEventWrap.cs
- OutputCacheSettings.cs
- GradientStop.cs
- ValuePattern.cs
- IsolatedStorageException.cs
- columnmapkeybuilder.cs
- WeakReference.cs
- ProfileService.cs
- IgnoreSectionHandler.cs
- WsatServiceAddress.cs
- NetCodeGroup.cs
- QueryUtil.cs
- EnumerableRowCollection.cs
- CodeSnippetExpression.cs
- StreamSecurityUpgradeInitiator.cs
- SkewTransform.cs
- DeviceSpecificChoiceCollection.cs
- Merger.cs
- APCustomTypeDescriptor.cs
- WebZone.cs
- ThaiBuddhistCalendar.cs
- CheckBoxStandardAdapter.cs
- PhysicalFontFamily.cs
- ImageUrlEditor.cs
- SortedSet.cs
- _ConnectOverlappedAsyncResult.cs
- ReadWriteSpinLock.cs
- KeyedPriorityQueue.cs
- MediaElementAutomationPeer.cs
- CancellationState.cs
- RuleSettings.cs
- BuildProvidersCompiler.cs
- SchemaCollectionCompiler.cs
- TableCell.cs
- ProtocolsConfiguration.cs
- namescope.cs
- HttpWebResponse.cs
- BoundingRectTracker.cs
- compensatingcollection.cs
- RijndaelManaged.cs
- PrintPreviewDialog.cs
- DtrList.cs
- SrgsElement.cs
- ReaderContextStackData.cs
- ScrollProperties.cs
- Table.cs
- SpellerInterop.cs
- XmlSchemaElement.cs
- ProcessHostConfigUtils.cs
- QilInvoke.cs
- DispatcherFrame.cs
- KnownBoxes.cs
- ConnectionProviderAttribute.cs
- IdentityNotMappedException.cs
- ReflectionPermission.cs
- GlobalProxySelection.cs
- EntityDataSourceContextCreatedEventArgs.cs
- SecurityContext.cs
- TypeValidationEventArgs.cs