-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCustomHandler.cs
45 lines (40 loc) · 934 Bytes
/
CustomHandler.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
namespace WebServiceStudio
{
using System;
using System.ComponentModel;
using System.Xml.Serialization;
[TypeConverter(typeof(ExpandableObjectConverter))]
public class CustomHandler
{
private string handler;
private string typeName;
public override string ToString()
{
return (this.handler + "{" + this.typeName + "}");
}
[XmlAttribute]
public string Handler
{
get
{
return this.handler;
}
set
{
this.handler = value;
}
}
[XmlAttribute]
public string TypeName
{
get
{
return this.typeName;
}
set
{
this.typeName = value;
}
}
}
}