Code:
/ Net / Net / 3.5.50727.3053 / DEVDIV / depot / DevDiv / releases / Orcas / SP / ndp / fx / src / xsp / System / Web / Extensions / Script / Services / ProxyGenerator.cs / 1 / ProxyGenerator.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Script.Services { using System; using System.Globalization; using System.Security.Permissions; using System.ServiceModel; using System.Web.Resources; [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public static class ProxyGenerator { public static string GetClientProxyScript(Type type, string path, bool debug) { if (type == null) { throw new ArgumentNullException("type"); } if (path == null) { throw new ArgumentNullException("path"); } WebServiceData webServiceData = null; ClientProxyGenerator proxyGenerator = null; if (IsWebServiceType(type)) { proxyGenerator = new WebServiceClientProxyGenerator(path, debug); webServiceData = new WebServiceData(type, false); } else if (IsPageType(type)) { proxyGenerator = new PageClientProxyGenerator(path, debug); webServiceData = new WebServiceData(type, true); } else if(IsWCFServiceType(type)){ return WCFServiceClientProxyGenerator.GetClientProxyScript(type, path, debug); } else { throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ProxyGenerator_UnsupportedType, type.FullName)); } return proxyGenerator.GetClientProxyScript(webServiceData); } private static bool IsPageType(Type type) { return typeof(System.Web.UI.Page).IsAssignableFrom(type); } private static bool IsWCFServiceType(Type type) { object[] attribs = type.GetCustomAttributes(typeof(ServiceContractAttribute), true); return (attribs.Length != 0); } private static bool IsWebServiceType(Type type) { object[] attribs = type.GetCustomAttributes(typeof(ScriptServiceAttribute), true); return (attribs.Length != 0); } } } // 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.Security.Permissions; using System.ServiceModel; using System.Web.Resources; [AspNetHostingPermission(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public static class ProxyGenerator { public static string GetClientProxyScript(Type type, string path, bool debug) { if (type == null) { throw new ArgumentNullException("type"); } if (path == null) { throw new ArgumentNullException("path"); } WebServiceData webServiceData = null; ClientProxyGenerator proxyGenerator = null; if (IsWebServiceType(type)) { proxyGenerator = new WebServiceClientProxyGenerator(path, debug); webServiceData = new WebServiceData(type, false); } else if (IsPageType(type)) { proxyGenerator = new PageClientProxyGenerator(path, debug); webServiceData = new WebServiceData(type, true); } else if(IsWCFServiceType(type)){ return WCFServiceClientProxyGenerator.GetClientProxyScript(type, path, debug); } else { throw new ArgumentException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ProxyGenerator_UnsupportedType, type.FullName)); } return proxyGenerator.GetClientProxyScript(webServiceData); } private static bool IsPageType(Type type) { return typeof(System.Web.UI.Page).IsAssignableFrom(type); } private static bool IsWCFServiceType(Type type) { object[] attribs = type.GetCustomAttributes(typeof(ServiceContractAttribute), true); return (attribs.Length != 0); } private static bool IsWebServiceType(Type type) { object[] attribs = type.GetCustomAttributes(typeof(ScriptServiceAttribute), true); return (attribs.Length != 0); } } } // 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
- MatrixCamera.cs
- WeakRefEnumerator.cs
- PriorityQueue.cs
- MouseBinding.cs
- MessageEnumerator.cs
- AssertFilter.cs
- DataGridCheckBoxColumn.cs
- GradientStop.cs
- SqlCaseSimplifier.cs
- GraphicsPath.cs
- HtmlTable.cs
- UpdateTranslator.cs
- wgx_commands.cs
- LogWriteRestartAreaAsyncResult.cs
- ArrayTypeMismatchException.cs
- ViewGenResults.cs
- DomainConstraint.cs
- ApplicationInterop.cs
- FontFamilyIdentifier.cs
- WebServiceData.cs
- SigningProgress.cs
- BevelBitmapEffect.cs
- Thread.cs
- PerformanceCounter.cs
- Message.cs
- CellLabel.cs
- CodeDirectionExpression.cs
- RadioButtonDesigner.cs
- Debugger.cs
- ConstraintManager.cs
- ExecutedRoutedEventArgs.cs
- JsonEncodingStreamWrapper.cs
- ListSortDescriptionCollection.cs
- RegularExpressionValidator.cs
- ToolStripDropDownMenu.cs
- ComboBoxDesigner.cs
- PolicyUnit.cs
- ImageBrush.cs
- GridViewCancelEditEventArgs.cs
- AvTraceDetails.cs
- EmbeddedMailObjectsCollection.cs
- HttpListenerException.cs
- TextSimpleMarkerProperties.cs
- QuarticEase.cs
- sortedlist.cs
- TextContainerHelper.cs
- SystemIPv6InterfaceProperties.cs
- CodeNamespaceImport.cs
- CompensationTokenData.cs
- ExpressionHelper.cs
- validationstate.cs
- PrivilegedConfigurationManager.cs
- DecoratedNameAttribute.cs
- SoapAttributes.cs
- SQLCharsStorage.cs
- ComponentResourceKeyConverter.cs
- ThicknessAnimationBase.cs
- MimeMultiPart.cs
- MobileCapabilities.cs
- FastPropertyAccessor.cs
- BinaryReader.cs
- CustomTypeDescriptor.cs
- EmptyEnumerable.cs
- Int64Converter.cs
- EventRoute.cs
- ListCommandEventArgs.cs
- loginstatus.cs
- PlatformNotSupportedException.cs
- ContravarianceAdapter.cs
- RestHandlerFactory.cs
- Walker.cs
- EraserBehavior.cs
- HwndSource.cs
- MappingItemCollection.cs
- ParameterReplacerVisitor.cs
- Attributes.cs
- SHA384Cng.cs
- SeekStoryboard.cs
- SortDescription.cs
- ParseNumbers.cs
- LogicalExpr.cs
- ClientProtocol.cs
- WorkflowService.cs
- WithParamAction.cs
- COAUTHINFO.cs
- ApplicationDirectory.cs
- CharAnimationBase.cs
- BindingMemberInfo.cs
- DataGridPageChangedEventArgs.cs
- ControlCommandSet.cs
- OutputCacheSettingsSection.cs
- EventLogPropertySelector.cs
- ObjectReaderCompiler.cs
- XmlSchemaCompilationSettings.cs
- DataKey.cs
- OleStrCAMarshaler.cs
- Latin1Encoding.cs
- MemberJoinTreeNode.cs
- SchemaElementLookUpTableEnumerator.cs
- SmtpNegotiateAuthenticationModule.cs