C# 클래스 NServiceBus.HeaderOptionExtensions

Extensions to the options to provide ways to set message headers.
파일 보기 프로젝트 열기: Particular/NServiceBus

공개 메소드들

메소드 설명
GetHeaders ( this options ) : string>.IReadOnlyDictionary

Returns all headers set by SetHeader on the outgoing message.

SetHeader ( this options, string key, string value ) : void

Allows headers to be set for the outgoing message.

메소드 상세

GetHeaders() 공개 정적인 메소드

Returns all headers set by SetHeader on the outgoing message.
public static GetHeaders ( this options ) : string>.IReadOnlyDictionary
options this
리턴 string>.IReadOnlyDictionary

SetHeader() 공개 정적인 메소드

Allows headers to be set for the outgoing message.
public static SetHeader ( this options, string key, string value ) : void
options this The options to extend.
key string The header key.
value string The header value.
리턴 void