MessageFault.GetDetail Method

Definition

Returns the detail object of the message fault.

Overloads

GetDetail<T>(XmlObjectSerializer)

Returns the detail object that uses the specified XmlObjectSerializer.

GetDetail<T>()

Returns the detail object of the message fault.

GetDetail<T>(XmlObjectSerializer)

Source:
MessageFault.cs
Source:
MessageFault.cs
Source:
MessageFault.cs

Returns the detail object that uses the specified XmlObjectSerializer.

public:
generic <typename T>
 T GetDetail(System::Runtime::Serialization::XmlObjectSerializer ^ serializer);
public T GetDetail<T> (System.Runtime.Serialization.XmlObjectSerializer serializer);
member this.GetDetail : System.Runtime.Serialization.XmlObjectSerializer -> 'T
Public Function GetDetail(Of T) (serializer As XmlObjectSerializer) As T

Type Parameters

T

The type of the detail object.

Parameters

serializer
XmlObjectSerializer

The XmlObjectSerializer to use when deserializing the detail object.

Returns

T

The detail object contained in the MessageFault.

Applies to

GetDetail<T>()

Source:
MessageFault.cs
Source:
MessageFault.cs
Source:
MessageFault.cs

Returns the detail object of the message fault.

public:
generic <typename T>
 T GetDetail();
public T GetDetail<T> ();
member this.GetDetail : unit -> 'T
Public Function GetDetail(Of T) () As T

Type Parameters

T

The type of the detail object.

Returns

T

The detail object of the message fault.

Applies to