C# 클래스 Microsoft.Protocols.TestSuites.Common.RopDeserializer

This class is used to deserialize input bytes into an ROP object
파일 보기 프로젝트 열기: OfficeDev/Interop-TestSuites 1 사용 예제들

공개 메소드들

메소드 설명
Deserialize ( byte ropBytes, IDeserializable &ropList ) : void

Deserialize input bytes indicated by ropBytes into a list of ROPs indicated by ropList

Deserialize ( byte ropBytes, List &ropList ) : void

Deserialize input bytes indicated by ropBytes into a list of ROPs indicated by ropList

Init ( ) : void

Initialize and allocate memory for the internal dictionary

Register ( int ropId, IDeserializable iropDeserializer ) : void

Register a ROP's Id together with a Deserializer

비공개 메소드들

메소드 설명
RopDeserializer ( ) : System

Prevents a default instance of the RopDeserializer class from being created.

메소드 상세

Deserialize() 공개 정적인 메소드

Deserialize input bytes indicated by ropBytes into a list of ROPs indicated by ropList
public static Deserialize ( byte ropBytes, IDeserializable &ropList ) : void
ropBytes byte The bytes need to be deserialized
ropList IDeserializable The ROPs list deserialized into
리턴 void

Deserialize() 공개 정적인 메소드

Deserialize input bytes indicated by ropBytes into a list of ROPs indicated by ropList
public static Deserialize ( byte ropBytes, List &ropList ) : void
ropBytes byte The bytes need to be deserialized
ropList List The ROPs list deserialized into
리턴 void

Init() 공개 정적인 메소드

Initialize and allocate memory for the internal dictionary
public static Init ( ) : void
리턴 void

Register() 공개 정적인 메소드

Register a ROP's Id together with a Deserializer
public static Register ( int ropId, IDeserializable iropDeserializer ) : void
ropId int The ROP's Id
iropDeserializer IDeserializable The interface define the methods that is needed to deserialize a bytes array into an ROP object
리턴 void