/// <inheritdoc />
 public ForEachTransformation(ITransformationCreateContext context)
     : base(context)
 {
     try
     {
         _transformationObject = (JObject)context.Property.Value.DeepClone();
     }
     catch (Exception)
     {
     }
 }
예제 #2
0
 public TestTransformation(ITransformationCreateContext context) : base(context)
 {
 }
 /// <inheritdoc />
 public UnionTransformation(ITransformationCreateContext context)
     : base(context)
 {
     _argument = context.Property.Value;
 }
 /// <inheritdoc />
 public CopyTransformation(ITransformationCreateContext context)
     : base(context)
 {
     _sourcePath = context.Property.Value.Value <string>();
 }
 /// <inheritdoc />
 public SetNullTransformation(ITransformationCreateContext context)
     : base(context)
 {
 }
예제 #6
0
 /// <summary>
 /// Initialize of <see cref="BaseTransformation"/>.
 /// </summary>
 /// <param name="context">Transformation create context.</param>
 protected BaseTransformation(ITransformationCreateContext context)
 {
     Context = context;
 }
 /// <inheritdoc />
 public RemoveTransformation(ITransformationCreateContext context)
     : base(context)
 {
 }