C# 클래스 DtaSpy.BizTalkTrackedMessagePart

파일 보기 프로젝트 열기: niik/DtaSpy 1 사용 예제들

공개 메소드들

메소드 설명
BizTalkTrackedMessagePart ( ) : System
BizTalkTrackedMessagePart ( BizTalkTrackingDb db, int spoolId ) : System
WriteTo ( Stream s ) : int

Writes the decoded contents of all fragments to the given stream while caching loaded fragments for future access. Not caching improves memory usage and may improve performance so if you're never going to access the fragments after this call, please use the overload which allows you to specify whether to cache or not.

WriteTo ( Stream s, bool cacheFragments ) : int

Writes the decoded contents of all fragments to the given stream, optionally caching loaded fragments for future access. Not caching improves memory usage and may improve performance. Don't cache if you're never going to access the fragments after. Caching has no effect if fragments already have been loaded for this message part.

비공개 메소드들

메소드 설명
BizTalkTrackedMessagePart ( BizTalkTrackingDb db, int spoolId, BizTalkFragment initialFragment ) : System
LoadFragments ( ) : IEnumerable

메소드 상세

BizTalkTrackedMessagePart() 공개 메소드

public BizTalkTrackedMessagePart ( ) : System
리턴 System

BizTalkTrackedMessagePart() 공개 메소드

public BizTalkTrackedMessagePart ( BizTalkTrackingDb db, int spoolId ) : System
db BizTalkTrackingDb
spoolId int
리턴 System

WriteTo() 공개 메소드

Writes the decoded contents of all fragments to the given stream while caching loaded fragments for future access. Not caching improves memory usage and may improve performance so if you're never going to access the fragments after this call, please use the overload which allows you to specify whether to cache or not.
public WriteTo ( Stream s ) : int
s Stream
리턴 int

WriteTo() 공개 메소드

Writes the decoded contents of all fragments to the given stream, optionally caching loaded fragments for future access. Not caching improves memory usage and may improve performance. Don't cache if you're never going to access the fragments after. Caching has no effect if fragments already have been loaded for this message part.
public WriteTo ( Stream s, bool cacheFragments ) : int
s Stream The s.
cacheFragments bool /// if set to true cache fragments for future access /// via the Fragments property. ///
리턴 int