mscorlib(4.0.0.0) API with additions
XmlIncludeAttribute.cs
2 {
4  [AttributeUsage(AttributeTargets.Class | AttributeTargets.Struct | AttributeTargets.Method | AttributeTargets.Interface, AllowMultiple = true)]
5  [global::__DynamicallyInvokable]
7  {
8  private Type type;
9 
12  [global::__DynamicallyInvokable]
13  public Type Type
14  {
15  [global::__DynamicallyInvokable]
16  get
17  {
18  return type;
19  }
20  [global::__DynamicallyInvokable]
21  set
22  {
23  type = value;
24  }
25  }
26 
29  [global::__DynamicallyInvokable]
31  {
32  this.type = type;
33  }
34  }
35 }
Allows the T:System.Xml.Serialization.XmlSerializer to recognize a type when it serializes or deseria...
Represents the base class for custom attributes.
Definition: Attribute.cs:15
XmlIncludeAttribute(Type type)
Initializes a new instance of the T:System.Xml.Serialization.XmlIncludeAttribute class.
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
AttributeTargets
Specifies the application elements on which it is valid to apply an attribute.