You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@ -0,0 +1,74 @@
|
||||
//-----------------------------------------------------------------------------
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
//-----------------------------------------------------------------------------
|
||||
|
||||
namespace System.Activities.Validation
|
||||
{
|
||||
using System.Collections.ObjectModel;
|
||||
using System.ComponentModel;
|
||||
|
||||
public sealed class AddValidationError : NativeActivity
|
||||
{
|
||||
public AddValidationError()
|
||||
{
|
||||
}
|
||||
|
||||
public InArgument<string> Message
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
[DefaultValue(null)]
|
||||
public InArgument<bool> IsWarning
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
[DefaultValue(null)]
|
||||
public InArgument<string> PropertyName
|
||||
{
|
||||
get;
|
||||
set;
|
||||
}
|
||||
|
||||
protected override void CacheMetadata(NativeActivityMetadata metadata)
|
||||
{
|
||||
Collection<RuntimeArgument> arguments = new Collection<RuntimeArgument>();
|
||||
|
||||
RuntimeArgument messageArgument = new RuntimeArgument("Message", typeof(string), ArgumentDirection.In);
|
||||
metadata.Bind(this.Message, messageArgument);
|
||||
arguments.Add(messageArgument);
|
||||
|
||||
RuntimeArgument isWarningArgument = new RuntimeArgument("IsWarning", typeof(bool), ArgumentDirection.In, false);
|
||||
metadata.Bind(this.IsWarning, isWarningArgument);
|
||||
arguments.Add(isWarningArgument);
|
||||
|
||||
RuntimeArgument propertyNameArgument = new RuntimeArgument("PropertyName", typeof(string), ArgumentDirection.In, false);
|
||||
metadata.Bind(this.PropertyName, propertyNameArgument);
|
||||
arguments.Add(propertyNameArgument);
|
||||
|
||||
metadata.SetArgumentsCollection(arguments);
|
||||
}
|
||||
|
||||
protected override void Execute(NativeActivityContext context)
|
||||
{
|
||||
bool isWarning = false;
|
||||
string propertyName = string.Empty;
|
||||
string errorCode = string.Empty;
|
||||
|
||||
if (this.IsWarning != null)
|
||||
{
|
||||
isWarning = this.IsWarning.Get(context);
|
||||
}
|
||||
|
||||
if (this.PropertyName != null)
|
||||
{
|
||||
propertyName = this.PropertyName.Get(context);
|
||||
}
|
||||
|
||||
Constraint.AddValidationError(context, new ValidationError(this.Message.Get(context), isWarning, propertyName));
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user