Преглед изворни кода

This attribute is inherited by derived classes.changed the AttributeUsage
attribute.

svn path=/trunk/mcs/; revision=22790

Alon Gazit пре 22 година
родитељ
комит
ac85551cb5

+ 11 - 0
mcs/class/System.Web.Services/System.Web.Services.Protocols/ChangeLog

@@ -1,3 +1,14 @@
+2004-02-05  Alon Gazit <[email protected]>
+
+       * HttpMethodAttribute.cs:
+       * MatchAttribute.cs:
+       * SoapDocumentMethodAttribute.cs:
+       * SoapDocumentServiceAttribute.cs:
+       * SoapHeaderAttribute.cs:
+       * SoapRpcMethodAttribute.cs:
+       * SoapRpcServiceAttribute.cs: This attribute is inherited by
+		derived classes.changed the AttributeUsage attribute.
+
 2004-02-05  Alon Gazit <[email protected]>
 
 	* SoapHeaderAttribute.cs: This attribute is multiuse.

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/HttpMethodAttribute.cs

@@ -8,7 +8,7 @@
 //
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Method)]
+	[AttributeUsage (AttributeTargets.Method, Inherited = true)]
 	public sealed class HttpMethodAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/MatchAttribute.cs

@@ -8,7 +8,7 @@
 //
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.All)]
+	[AttributeUsage (AttributeTargets.All, Inherited = true)]
 	public sealed class MatchAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapDocumentMethodAttribute.cs

@@ -10,7 +10,7 @@
 using System.Web.Services.Description;
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Method)]
+	[AttributeUsage (AttributeTargets.Method, Inherited = true)]
 	public sealed class SoapDocumentMethodAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapDocumentServiceAttribute.cs

@@ -10,7 +10,7 @@
 using System.Web.Services.Description;
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Class)]
+	[AttributeUsage (AttributeTargets.Class, Inherited = true)]
 	public sealed class SoapDocumentServiceAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapHeaderAttribute.cs

@@ -8,7 +8,7 @@
 //
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Method, AllowMultiple = true)]
+	[AttributeUsage (AttributeTargets.Method, AllowMultiple = true, Inherited = true)]
 	public sealed class SoapHeaderAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapRpcMethodAttribute.cs

@@ -8,7 +8,7 @@
 //
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Method)]
+	[AttributeUsage (AttributeTargets.Method, Inherited = true)]
 	public sealed class SoapRpcMethodAttribute : Attribute {
 
 		#region Fields

+ 1 - 1
mcs/class/System.Web.Services/System.Web.Services.Protocols/SoapRpcServiceAttribute.cs

@@ -8,7 +8,7 @@
 //
 
 namespace System.Web.Services.Protocols {
-	[AttributeUsage (AttributeTargets.Class)]
+	[AttributeUsage (AttributeTargets.Class, Inherited = true)]
 	public sealed class SoapRpcServiceAttribute : Attribute {
 
 		#region Fields