Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / Script / Services / WCFServiceClientProxyGenerator.cs / 1 / WCFServiceClientProxyGenerator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { using System; using System.Globalization; using System.ServiceModel.Description; using System.Text; internal class WCFServiceClientProxyGenerator : ClientProxyGenerator { const int MaxIdentifierLength = 511; const string DataContractXsdBaseNamespace = @"http://schemas.datacontract.org/2004/07/"; string _path; // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static void AddToNamespace(StringBuilder builder, string fragment) { if (fragment == null) { return; } bool isStart = true; for (int i = 0; i < fragment.Length && builder.Length < MaxIdentifierLength; i++) { char c = fragment[i]; if (IsValid(c)) { if (isStart && !IsValidStart(c)) { builder.Append("_"); } builder.Append(c); isStart = false; } else if ((c == '.' || c == '/' || c == ':') && (builder.Length == 1 || (builder.Length > 1 && builder[builder.Length - 1] != '.'))) { builder.Append('.'); isStart = true; } } } protected override string GetProxyPath() { return _path; } internal static string GetClientProxyScript(Type contractType, string path, bool debugMode) { ContractDescription contract = ContractDescription.GetContract(contractType); WebServiceData webServiceData = WebServiceData.GetWebServiceData(contract); WCFServiceClientProxyGenerator proxyGenerator = new WCFServiceClientProxyGenerator(path, debugMode); return proxyGenerator.GetClientProxyScript(webServiceData); } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace protected override string GetClientTypeNamespace(string ns) { if (string.IsNullOrEmpty(ns)) { return String.Empty; } Uri uri = null; StringBuilder builder = new StringBuilder(); if (Uri.TryCreate(ns, UriKind.RelativeOrAbsolute, out uri)) { if (!uri.IsAbsoluteUri) { AddToNamespace(builder, uri.OriginalString); } else { string uriString = uri.AbsoluteUri; if (uriString.StartsWith(DataContractXsdBaseNamespace, StringComparison.Ordinal)) { AddToNamespace(builder, uriString.Substring(DataContractXsdBaseNamespace.Length)); } else { string host = uri.Host; if (host != null) { AddToNamespace(builder, host); } string path = uri.PathAndQuery; if (path != null) { AddToNamespace(builder, path); } } } } if (builder.Length == 0) { return String.Empty; } int length = builder.Length; if (builder[builder.Length - 1] == '.') { length--; } length = Math.Min(MaxIdentifierLength, length); return builder.ToString(0, length); } protected override string GetProxyTypeName(WebServiceData data) { return GetClientTypeNamespace(data.TypeData.TypeName); } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static bool IsValid(char c) { UnicodeCategory uc = Char.GetUnicodeCategory(c); // each char must be Lu, Ll, Lt, Lm, Lo, Nd, Mn, Mc, Pc switch (uc) { case UnicodeCategory.UppercaseLetter: // Lu case UnicodeCategory.LowercaseLetter: // Ll case UnicodeCategory.TitlecaseLetter: // Lt case UnicodeCategory.ModifierLetter: // Lm case UnicodeCategory.OtherLetter: // Lo case UnicodeCategory.DecimalDigitNumber: // Nd case UnicodeCategory.NonSpacingMark: // Mn case UnicodeCategory.SpacingCombiningMark: // Mc case UnicodeCategory.ConnectorPunctuation: // Pc return true; default: return false; } } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static bool IsValidStart(char c) { return (Char.GetUnicodeCategory(c) != UnicodeCategory.DecimalDigitNumber); } internal WCFServiceClientProxyGenerator(string path, bool debugMode) { this._path = path; this._debugMode = debugMode; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { using System; using System.Globalization; using System.ServiceModel.Description; using System.Text; internal class WCFServiceClientProxyGenerator : ClientProxyGenerator { const int MaxIdentifierLength = 511; const string DataContractXsdBaseNamespace = @"http://schemas.datacontract.org/2004/07/"; string _path; // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static void AddToNamespace(StringBuilder builder, string fragment) { if (fragment == null) { return; } bool isStart = true; for (int i = 0; i < fragment.Length && builder.Length < MaxIdentifierLength; i++) { char c = fragment[i]; if (IsValid(c)) { if (isStart && !IsValidStart(c)) { builder.Append("_"); } builder.Append(c); isStart = false; } else if ((c == '.' || c == '/' || c == ':') && (builder.Length == 1 || (builder.Length > 1 && builder[builder.Length - 1] != '.'))) { builder.Append('.'); isStart = true; } } } protected override string GetProxyPath() { return _path; } internal static string GetClientProxyScript(Type contractType, string path, bool debugMode) { ContractDescription contract = ContractDescription.GetContract(contractType); WebServiceData webServiceData = WebServiceData.GetWebServiceData(contract); WCFServiceClientProxyGenerator proxyGenerator = new WCFServiceClientProxyGenerator(path, debugMode); return proxyGenerator.GetClientProxyScript(webServiceData); } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace protected override string GetClientTypeNamespace(string ns) { if (string.IsNullOrEmpty(ns)) { return String.Empty; } Uri uri = null; StringBuilder builder = new StringBuilder(); if (Uri.TryCreate(ns, UriKind.RelativeOrAbsolute, out uri)) { if (!uri.IsAbsoluteUri) { AddToNamespace(builder, uri.OriginalString); } else { string uriString = uri.AbsoluteUri; if (uriString.StartsWith(DataContractXsdBaseNamespace, StringComparison.Ordinal)) { AddToNamespace(builder, uriString.Substring(DataContractXsdBaseNamespace.Length)); } else { string host = uri.Host; if (host != null) { AddToNamespace(builder, host); } string path = uri.PathAndQuery; if (path != null) { AddToNamespace(builder, path); } } } } if (builder.Length == 0) { return String.Empty; } int length = builder.Length; if (builder[builder.Length - 1] == '.') { length--; } length = Math.Min(MaxIdentifierLength, length); return builder.ToString(0, length); } protected override string GetProxyTypeName(WebServiceData data) { return GetClientTypeNamespace(data.TypeData.TypeName); } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static bool IsValid(char c) { UnicodeCategory uc = Char.GetUnicodeCategory(c); // each char must be Lu, Ll, Lt, Lm, Lo, Nd, Mn, Mc, Pc switch (uc) { case UnicodeCategory.UppercaseLetter: // Lu case UnicodeCategory.LowercaseLetter: // Ll case UnicodeCategory.TitlecaseLetter: // Lt case UnicodeCategory.ModifierLetter: // Lm case UnicodeCategory.OtherLetter: // Lo case UnicodeCategory.DecimalDigitNumber: // Nd case UnicodeCategory.NonSpacingMark: // Mn case UnicodeCategory.SpacingCombiningMark: // Mc case UnicodeCategory.ConnectorPunctuation: // Pc return true; default: return false; } } // Similar to proxy generation code in WCF System.Runtime.Serialization.CodeExporter // to generate CLR namespace from DataContract namespace private static bool IsValidStart(char c) { return (Char.GetUnicodeCategory(c) != UnicodeCategory.DecimalDigitNumber); } internal WCFServiceClientProxyGenerator(string path, bool debugMode) { this._path = path; this._debugMode = debugMode; } } } // 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
- StickyNoteAnnotations.cs
- KnownTypes.cs
- EventsTab.cs
- DictionaryTraceRecord.cs
- TerminateDesigner.cs
- EventEntry.cs
- Operators.cs
- AuthorizationContext.cs
- CompilerWrapper.cs
- DateTimePicker.cs
- LinkLabelLinkClickedEvent.cs
- BaseParagraph.cs
- NetworkInformationPermission.cs
- BinaryFormatterWriter.cs
- SubMenuStyle.cs
- Separator.cs
- DesignerActionList.cs
- TypeSystem.cs
- XmlDownloadManager.cs
- CodePrimitiveExpression.cs
- FontFamily.cs
- RowToParametersTransformer.cs
- DataKey.cs
- AddInStore.cs
- WindowsAuthenticationModule.cs
- NullRuntimeConfig.cs
- ConfigurationException.cs
- Activity.cs
- Attributes.cs
- streamingZipPartStream.cs
- ImageButton.cs
- TableHeaderCell.cs
- hebrewshape.cs
- CompiledWorkflowDefinitionContext.cs
- Stack.cs
- WeakEventManager.cs
- FixedSOMSemanticBox.cs
- SerializationSectionGroup.cs
- WindowsGraphics.cs
- BookmarkCallbackWrapper.cs
- EntityTransaction.cs
- securitycriticaldata.cs
- TreeViewAutomationPeer.cs
- DataGridParentRows.cs
- FlowchartDesigner.xaml.cs
- SynchronizedCollection.cs
- FileChangeNotifier.cs
- Context.cs
- ExceptionWrapper.cs
- OdbcEnvironment.cs
- figurelength.cs
- BitmapEncoder.cs
- WorkflowDesignerMessageFilter.cs
- Schema.cs
- Thumb.cs
- Rotation3D.cs
- HtmlGenericControl.cs
- XDeferredAxisSource.cs
- SystemIcmpV4Statistics.cs
- FolderBrowserDialogDesigner.cs
- EventManager.cs
- CheckBoxList.cs
- XmlSchemaCompilationSettings.cs
- SetStoryboardSpeedRatio.cs
- TrustManagerPromptUI.cs
- XmlSchemaImport.cs
- TimestampInformation.cs
- PathGeometry.cs
- SourceFileInfo.cs
- ThreadStaticAttribute.cs
- PersonalizationProviderHelper.cs
- ToolbarAUtomationPeer.cs
- TextContainerChangeEventArgs.cs
- WindowProviderWrapper.cs
- EventSetterHandlerConverter.cs
- TransmissionStrategy.cs
- ObjectStateManager.cs
- ChannelTraceRecord.cs
- Latin1Encoding.cs
- ContainerSelectorGlyph.cs
- DataGridViewControlCollection.cs
- XmlException.cs
- SqlInternalConnectionTds.cs
- StrokeCollectionConverter.cs
- Point3DCollection.cs
- RowsCopiedEventArgs.cs
- _PooledStream.cs
- DataGridBoolColumn.cs
- WebPermission.cs
- UrlMapping.cs
- PageAsyncTask.cs
- ManagementOptions.cs
- FormViewModeEventArgs.cs
- VectorAnimationBase.cs
- SystemParameters.cs
- InfoCardRSACryptoProvider.cs
- TypeDescriptionProvider.cs
- NonVisualControlAttribute.cs
- CreateUserWizard.cs
- DateTimeParse.cs