mscorlib(4.0.0.0) API with additions
XmlSerializerImplementation.cs
1 using System.Collections;
2 
4 {
6  public abstract class XmlSerializerImplementation
7  {
10  public virtual XmlSerializationReader Reader
11  {
12  get
13  {
14  throw new NotSupportedException();
15  }
16  }
17 
20  public virtual XmlSerializationWriter Writer
21  {
22  get
23  {
24  throw new NotSupportedException();
25  }
26  }
27 
30  public virtual Hashtable ReadMethods
31  {
32  get
33  {
34  throw new NotSupportedException();
35  }
36  }
37 
40  public virtual Hashtable WriteMethods
41  {
42  get
43  {
44  throw new NotSupportedException();
45  }
46  }
47 
50  public virtual Hashtable TypedSerializers
51  {
52  get
53  {
54  throw new NotSupportedException();
55  }
56  }
57 
62  public virtual bool CanSerialize(Type type)
63  {
64  throw new NotSupportedException();
65  }
66 
70  public virtual XmlSerializer GetSerializer(Type type)
71  {
72  throw new NotSupportedException();
73  }
74  }
75 }
virtual Hashtable ReadMethods
Gets the collection of methods that is used to read a data stream.
virtual bool CanSerialize(Type type)
Gets a value that determines whether a type can be serialized.
Definition: __Canon.cs:3
Represents an abstract class used for controlling serialization by the T:System.Xml....
virtual Hashtable TypedSerializers
Gets the collection of typed serializers that is found in the assembly.
Controls deserialization by the T:System.Xml.Serialization.XmlSerializer class.
virtual XmlSerializer GetSerializer(Type type)
Returns a serializer for the specified type.
Represents a collection of key/value pairs that are organized based on the hash code of the key....
Definition: Hashtable.cs:17
Serializes and deserializes objects into and from XML documents. The T:System.Xml....
virtual Hashtable WriteMethods
Get the collection of methods that is used to write to a data stream.
Represents type declarations: class types, interface types, array types, value types,...
Definition: Type.cs:18
virtual XmlSerializationWriter Writer
Gets the XML writer object for the serializer.
Defines the reader, writer, and methods for pre-generated, typed serializers.
The exception that is thrown when an invoked method is not supported, or when there is an attempt to ...
virtual XmlSerializationReader Reader
Gets the XML reader object that is used by the serializer.