TypedMessageConverter Class
Converts a typed message to an untyped message, or an untyped message to a typed message.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
| Name | Description | |
|---|---|---|
![]() | TypedMessageConverter() | Initializes a new instance of the TypedMessageConverter class. |
| Name | Description | |
|---|---|---|
![]() ![]() | Create(Type^, String^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() ![]() | Create(Type^, String^, DataContractFormatAttribute^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() ![]() | Create(Type^, String^, String^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() ![]() | Create(Type^, String^, String^, DataContractFormatAttribute^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() ![]() | Create(Type^, String^, String^, XmlSerializerFormatAttribute^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() ![]() | Create(Type^, String^, XmlSerializerFormatAttribute^) | Represents a static method that returns a TypedMessageConverter instance. |
![]() | Equals(Object^) | Determines whether the specified object is equal to the current object.(Inherited from Object.) |
![]() | Finalize() | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.(Inherited from Object.) |
![]() | FromMessage(Message^) | Creates a typed message from the specified Message instance. |
![]() | GetHashCode() | Serves as the default hash function. (Inherited from Object.) |
![]() | GetType() | |
![]() | MemberwiseClone() | |
![]() | ToMessage(Object^) | Creates a Message instance from the specified typed message. |
![]() | ToMessage(Object^, MessageVersion^) | Creates a Message instance from the specified typed message using the specified version. |
![]() | ToString() | Returns a string that represents the current object.(Inherited from Object.) |
This class provides functionalities to convert a typed message to an untyped message, or an untyped message to a typed message. A typed message is an instance of a type that has the MessageContractAttribute attribute annotated. An untyped message is one that is an instance of the Message class. You can annotate a type with the MessageContractAttribute to create a custom message type, and then use the methods provided by this class to convert it to an untyped Message instance.
Available since 3.0
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.


