aspnetcore/src/Microsoft.AspNet.Mvc.Core/FormContext.cs

79 lines
2.6 KiB
C#

// Copyright (c) Microsoft Open Technologies, Inc.
// All Rights Reserved
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR
// CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING
// WITHOUT LIMITATION ANY IMPLIED WARRANTIES OR CONDITIONS OF
// TITLE, FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABLITY OR
// NON-INFRINGEMENT.
// See the Apache 2 License for the specific language governing
// permissions and limitations under the License.
using System;
using System.Collections.Generic;
using Microsoft.AspNet.Mvc.ModelBinding;
namespace Microsoft.AspNet.Mvc
{
public class FormContext
{
private readonly Dictionary<string, FieldValidationMetadata> _fieldValidators =
new Dictionary<string, FieldValidationMetadata>(StringComparer.Ordinal);
private readonly Dictionary<string, bool> _renderedFields =
new Dictionary<string, bool>(StringComparer.Ordinal);
public IDictionary<string, FieldValidationMetadata> FieldValidators
{
get { return _fieldValidators; }
}
public string FormId { get; set; }
public bool ReplaceValidationSummary { get; set; }
public string ValidationSummaryId { get; set; }
public FieldValidationMetadata GetValidationMetadataForField([NotNull] string fieldName)
{
return GetValidationMetadataForField(fieldName, createIfNotFound: false);
}
public FieldValidationMetadata GetValidationMetadataForField([NotNull] string fieldName, bool createIfNotFound)
{
FieldValidationMetadata metadata;
if (!FieldValidators.TryGetValue(fieldName, out metadata))
{
if (createIfNotFound)
{
metadata = new FieldValidationMetadata()
{
FieldName = fieldName
};
FieldValidators[fieldName] = metadata;
}
}
return metadata;
}
public bool RenderedField([NotNull] string fieldName)
{
bool result;
_renderedFields.TryGetValue(fieldName, out result);
return result;
}
public void RenderedField([NotNull] string fieldName, bool value)
{
_renderedFields[fieldName] = value;
}
}
}