Code:
/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / Web / Services / WebServiceBindingAttribute.cs / 1305376 / WebServiceBindingAttribute.cs
//------------------------------------------------------------------------------ //// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services { using System; using System.ComponentModel; using System.Web.Services.Protocols; using System.Runtime.InteropServices; ////// /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple=true)] public sealed class WebServiceBindingAttribute : Attribute { string name; string ns; string location; WsiProfiles claims = WsiProfiles.None; bool emitClaims; ///[To be supplied.] ////// /// public WebServiceBindingAttribute() { } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name) { this.name = name; } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name, string ns) { this.name = name; this.ns = ns; } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name, string ns, string location) { this.name = name; this.ns = ns; this.location = location; } ///[To be supplied.] ////// /// public WsiProfiles ConformsTo { get { return claims; } set { claims = value; } } ///[To be supplied.] ////// /// public bool EmitConformanceClaims { get { return emitClaims; } set { emitClaims = value; } } ///[To be supplied.] ////// /// public string Location { get { return location == null ? string.Empty : location; } set { location = value; } } ///[To be supplied.] ////// /// public string Name { get { return name == null ? string.Empty : name; } set { name = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns == null ? string.Empty : ns; } set { ns = value; } } } internal class WebServiceBindingReflector { private WebServiceBindingReflector() {} internal static WebServiceBindingAttribute GetAttribute(Type type) { for (; type != null; type = type.BaseType) { object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); if (attrs.Length == 0) continue; if (attrs.Length > 1) throw new ArgumentException(Res.GetString(Res.OnlyOneWebServiceBindingAttributeMayBeSpecified1, type.FullName), "type"); return (WebServiceBindingAttribute)attrs[0]; } return null; } internal static WebServiceBindingAttribute GetAttribute(LogicalMethodInfo methodInfo, string binding) { if (methodInfo.Binding != null) { if (binding.Length > 0 && methodInfo.Binding.Name != binding) throw new InvalidOperationException(Res.GetString(Res.WebInvalidBindingName, binding, methodInfo.Binding.Name)); return methodInfo.Binding; } Type type = methodInfo.DeclaringType; object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); WebServiceBindingAttribute webAttr = null; foreach (WebServiceBindingAttribute attr in attrs) { if (attr.Name == binding) { if (webAttr != null) throw new ArgumentException(Res.GetString(Res.MultipleBindingsWithSameName2, type.FullName, binding, "methodInfo")); webAttr = attr; } } if (webAttr == null && binding != null && binding.Length > 0) throw new ArgumentException(Res.GetString(Res.TypeIsMissingWebServiceBindingAttributeThat2, type.FullName, binding), "methodInfo"); return webAttr; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007. //------------------------------------------------------------------------------ //[To be supplied.] ///// Copyright (c) Microsoft Corporation. All rights reserved. // //----------------------------------------------------------------------------- namespace System.Web.Services { using System; using System.ComponentModel; using System.Web.Services.Protocols; using System.Runtime.InteropServices; ////// /// [AttributeUsage(AttributeTargets.Class | AttributeTargets.Interface, AllowMultiple=true)] public sealed class WebServiceBindingAttribute : Attribute { string name; string ns; string location; WsiProfiles claims = WsiProfiles.None; bool emitClaims; ///[To be supplied.] ////// /// public WebServiceBindingAttribute() { } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name) { this.name = name; } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name, string ns) { this.name = name; this.ns = ns; } ///[To be supplied.] ////// /// public WebServiceBindingAttribute(string name, string ns, string location) { this.name = name; this.ns = ns; this.location = location; } ///[To be supplied.] ////// /// public WsiProfiles ConformsTo { get { return claims; } set { claims = value; } } ///[To be supplied.] ////// /// public bool EmitConformanceClaims { get { return emitClaims; } set { emitClaims = value; } } ///[To be supplied.] ////// /// public string Location { get { return location == null ? string.Empty : location; } set { location = value; } } ///[To be supplied.] ////// /// public string Name { get { return name == null ? string.Empty : name; } set { name = value; } } ///[To be supplied.] ////// /// public string Namespace { get { return ns == null ? string.Empty : ns; } set { ns = value; } } } internal class WebServiceBindingReflector { private WebServiceBindingReflector() {} internal static WebServiceBindingAttribute GetAttribute(Type type) { for (; type != null; type = type.BaseType) { object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); if (attrs.Length == 0) continue; if (attrs.Length > 1) throw new ArgumentException(Res.GetString(Res.OnlyOneWebServiceBindingAttributeMayBeSpecified1, type.FullName), "type"); return (WebServiceBindingAttribute)attrs[0]; } return null; } internal static WebServiceBindingAttribute GetAttribute(LogicalMethodInfo methodInfo, string binding) { if (methodInfo.Binding != null) { if (binding.Length > 0 && methodInfo.Binding.Name != binding) throw new InvalidOperationException(Res.GetString(Res.WebInvalidBindingName, binding, methodInfo.Binding.Name)); return methodInfo.Binding; } Type type = methodInfo.DeclaringType; object[] attrs = type.GetCustomAttributes(typeof(WebServiceBindingAttribute), false); WebServiceBindingAttribute webAttr = null; foreach (WebServiceBindingAttribute attr in attrs) { if (attr.Name == binding) { if (webAttr != null) throw new ArgumentException(Res.GetString(Res.MultipleBindingsWithSameName2, type.FullName, binding, "methodInfo")); webAttr = attr; } } if (webAttr == null && binding != null && binding.Length > 0) throw new ArgumentException(Res.GetString(Res.TypeIsMissingWebServiceBindingAttributeThat2, type.FullName, binding), "methodInfo"); return webAttr; } } } // File provided for Reference Use Only by Microsoft Corporation (c) 2007.[To be supplied.] ///
Link Menu

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- MouseActionValueSerializer.cs
- SweepDirectionValidation.cs
- KnownIds.cs
- TextBoxAutomationPeer.cs
- ThemeDirectoryCompiler.cs
- HandlerFactoryWrapper.cs
- XmlSchemaElement.cs
- MDIWindowDialog.cs
- HierarchicalDataSourceControl.cs
- TraceLog.cs
- OdbcReferenceCollection.cs
- UnSafeCharBuffer.cs
- ExpressionBuilder.cs
- ListViewItem.cs
- AllMembershipCondition.cs
- WebPartDescriptionCollection.cs
- GenericNameHandler.cs
- NativeMethods.cs
- StateChangeEvent.cs
- ZipIOLocalFileBlock.cs
- HotCommands.cs
- TypedColumnHandler.cs
- SelectionRangeConverter.cs
- AnonymousIdentificationSection.cs
- PropertyNames.cs
- CompiledAction.cs
- ReflectEventDescriptor.cs
- ValidatorCompatibilityHelper.cs
- DbBuffer.cs
- SR.cs
- TickBar.cs
- ResetableIterator.cs
- RowUpdatedEventArgs.cs
- XmlEncoding.cs
- sitestring.cs
- SubclassTypeValidatorAttribute.cs
- DataGridViewTopLeftHeaderCell.cs
- ArraySegment.cs
- HostingPreferredMapPath.cs
- CheckedPointers.cs
- StylusSystemGestureEventArgs.cs
- RequestQueryProcessor.cs
- Material.cs
- SizeAnimationBase.cs
- _ConnectStream.cs
- FileDialogCustomPlacesCollection.cs
- TransformGroup.cs
- BatchServiceHost.cs
- SafeEventHandle.cs
- AmbientValueAttribute.cs
- LineProperties.cs
- ArraySegment.cs
- MessagePartDescription.cs
- UpdateDelegates.Generated.cs
- NumericPagerField.cs
- AttributeUsageAttribute.cs
- DecoderReplacementFallback.cs
- RuntimeHelpers.cs
- TextServicesDisplayAttribute.cs
- Screen.cs
- StdValidatorsAndConverters.cs
- HtmlSelectionListAdapter.cs
- CompilerInfo.cs
- Delegate.cs
- TableSectionStyle.cs
- EdmType.cs
- DataGridViewRowEventArgs.cs
- EdmSchemaError.cs
- XslException.cs
- TextPenaltyModule.cs
- CategoryEditor.cs
- DEREncoding.cs
- QueryableDataSourceEditData.cs
- EnvironmentPermission.cs
- JapaneseCalendar.cs
- OleDbInfoMessageEvent.cs
- HttpGetProtocolImporter.cs
- COSERVERINFO.cs
- HttpCacheParams.cs
- StringBlob.cs
- TextBoxRenderer.cs
- AsymmetricKeyExchangeDeformatter.cs
- FreeFormDragDropManager.cs
- HttpCapabilitiesSectionHandler.cs
- XmlBaseReader.cs
- RadioButtonAutomationPeer.cs
- SelectionUIHandler.cs
- IssuerInformation.cs
- HorizontalAlignConverter.cs
- TextElementEnumerator.cs
- MenuTracker.cs
- ListBoxAutomationPeer.cs
- FloaterBaseParagraph.cs
- GridViewColumnHeader.cs
- VBIdentifierTrimConverter.cs
- NamedElement.cs
- IChannel.cs
- MetadataAssemblyHelper.cs
- WebPartZoneBaseDesigner.cs
- NetTcpBindingElement.cs