12 lines
250 B
C#
12 lines
250 B
C#
using System;
|
|
|
|
namespace Prise.Proxy
|
|
{
|
|
public class PassthroughResultConverter : ResultConverter
|
|
{
|
|
public override object Deserialize(Type localType, Type remoteType, object value)
|
|
{
|
|
return value;
|
|
}
|
|
}
|
|
} |