MessageHeaders.CopyHeaderFrom Method

Definition

Copies the header content from a specified object to this instance.

Overloads

CopyHeaderFrom(Message, Int32)

Copies the header content located at the specified index from the specified message to this instance.

CopyHeaderFrom(MessageHeaders, Int32)

Copies the header content located at the specified index from the specified message header collection to this instance.

CopyHeaderFrom(Message, Int32)

Source:
MessageHeaders.cs
Source:
MessageHeaders.cs
Source:
MessageHeaders.cs

Copies the header content located at the specified index from the specified message to this instance.

public:
 void CopyHeaderFrom(System::ServiceModel::Channels::Message ^ message, int headerIndex);
public void CopyHeaderFrom (System.ServiceModel.Channels.Message message, int headerIndex);
member this.CopyHeaderFrom : System.ServiceModel.Channels.Message * int -> unit
Public Sub CopyHeaderFrom (message As Message, headerIndex As Integer)

Parameters

message
Message

A message from which the header is copied from.

headerIndex
Int32

The location of the original message header, from which the content is copied over.

Applies to

CopyHeaderFrom(MessageHeaders, Int32)

Source:
MessageHeaders.cs
Source:
MessageHeaders.cs
Source:
MessageHeaders.cs

Copies the header content located at the specified index from the specified message header collection to this instance.

public:
 void CopyHeaderFrom(System::ServiceModel::Channels::MessageHeaders ^ collection, int headerIndex);
public void CopyHeaderFrom (System.ServiceModel.Channels.MessageHeaders collection, int headerIndex);
member this.CopyHeaderFrom : System.ServiceModel.Channels.MessageHeaders * int -> unit
Public Sub CopyHeaderFrom (collection As MessageHeaders, headerIndex As Integer)

Parameters

collection
MessageHeaders

A MessageHeaders collection object.

headerIndex
Int32

The location of the original message header, from which the content is copied over.

Applies to