File tree Expand file tree Collapse file tree 2 files changed +10
-6
lines changed
Expand file tree Collapse file tree 2 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -39,6 +39,10 @@ public XmlRpcBeginAttribute(string method)
3939 Method = method ;
4040 }
4141
42+ public string Description { get ; set ; } = "" ;
43+
44+ public bool Hidden { get ; set ; } = false ;
45+
4246 public string Method { get ; } = "" ;
4347
4448 public Type ReturnType { get ; set ; } = null ;
@@ -51,8 +55,6 @@ public override string ToString()
5155 return value ;
5256 }
5357
54- public string Description = "" ;
55- public bool Hidden = false ;
56- }
58+ }
5759}
5860
Original file line number Diff line number Diff line change @@ -30,16 +30,18 @@ namespace CookComputing.XmlRpc
3030 [ AttributeUsage ( AttributeTargets . Method ) ]
3131 public class XmlRpcEndAttribute : Attribute
3232 {
33- public string Description = "" ;
34- public bool Hidden = false ;
3533
36- public XmlRpcEndAttribute ( ) { }
34+ public XmlRpcEndAttribute ( ) { }
3735
3836 public XmlRpcEndAttribute ( string method )
3937 {
4038 Method = method ;
4139 }
4240
41+ public string Description { get ; set ; } = "" ;
42+
43+ public bool Hidden { get ; set ; } = false ;
44+
4345 public string Method { get ; } = "" ;
4446
4547 public bool IntrospectionMethod { get ; set ; } = false ;
You can’t perform that action at this time.
0 commit comments