C# 클래스 Appccelerate.DistributedEventBroker.Serializer.DataContractEventArgsSerializer

Serializer which uses the DataContractSerializer to serialize event arguments
상속: IEventArgsSerializer
파일 보기 프로젝트 열기: appccelerate/appccelerate 1 사용 예제들

공개 메소드들

메소드 설명
Deserialize ( Type eventArgsType, string eventArgs ) : EventArgs

Deserialize the specified event args type from its string representation.

Serialize ( EventArgs eventArgs ) : string

Serializes the specified event argument into a string representation.

메소드 상세

Deserialize() 공개 메소드

Deserialize the specified event args type from its string representation.
public Deserialize ( Type eventArgsType, string eventArgs ) : EventArgs
eventArgsType System.Type Type of the event args.
eventArgs string The event args as string.
리턴 System.EventArgs

Serialize() 공개 메소드

Serializes the specified event argument into a string representation.
public Serialize ( EventArgs eventArgs ) : string
eventArgs System.EventArgs The instance containing the event data.
리턴 string