다음을 통해 공유


PrefixEndpointAddressMessageFilter.Match 메서드

정의

메시지 또는 버퍼링된 메시지가 엔드포인트 필터 기준을 충족하는지 여부를 테스트합니다.

오버로드

Match(Message)

메시지가 지정된 엔드포인트 주소를 충족하는지 여부를 테스트합니다.

Match(MessageBuffer)

버퍼링된 메시지가 지정된 엔드포인트 주소를 충족하는지 여부를 테스트합니다.

설명

이 필터는 메시지 본문을 검사하지 않고 주소만 검사하여 가장 긴 접두사 일치를 수행한 다음 헤더를 검사하기 때문에 이 메서드의 두 오버로드는 동일합니다.

Match(Message)

메시지가 지정된 엔드포인트 주소를 충족하는지 여부를 테스트합니다.

public:
 override bool Match(System::ServiceModel::Channels::Message ^ message);
public override bool Match (System.ServiceModel.Channels.Message message);
override this.Match : System.ServiceModel.Channels.Message -> bool
Public Overrides Function Match (message As Message) As Boolean

매개 변수

message
Message

테스트할 Message 개체입니다.

반환

Boolean

true 개체가 필터에 지정된 엔드포인트 주소를 충족하면 Message 이고, 그렇지 않으면 false입니다.

예외

message이(가) null인 경우

설명

이 필터는 메시지 본문을 검사하지 않고 주소만 검사하여 가장 긴 접두사 일치를 수행한 다음 헤더를 검사하기 때문에 이 메서드의 두 오버로드는 동일합니다.

적용 대상

Match(MessageBuffer)

버퍼링된 메시지가 지정된 엔드포인트 주소를 충족하는지 여부를 테스트합니다.

public:
 override bool Match(System::ServiceModel::Channels::MessageBuffer ^ messageBuffer);
public override bool Match (System.ServiceModel.Channels.MessageBuffer messageBuffer);
override this.Match : System.ServiceModel.Channels.MessageBuffer -> bool
Public Overrides Function Match (messageBuffer As MessageBuffer) As Boolean

매개 변수

messageBuffer
MessageBuffer

테스트할 MessageBuffer 개체입니다.

반환

Boolean

true 개체가 엔드포인트 주소를 충족하면 MessageBuffer 이고, 그렇지 않으면 false입니다.

예외

messageBuffer이(가) null인 경우

설명

이 필터는 메시지 본문을 검사하지 않고 주소만 검사하여 가장 긴 접두사 일치를 수행한 다음 헤더를 검사하기 때문에 이 메서드의 두 오버로드는 동일합니다.

적용 대상