SenseNet.ContentRepository.Field.ParseValue C# (CSharp) Method

ParseValue() protected method

protected ParseValue ( string value ) : bool
value string
return bool
        protected virtual bool ParseValue(string value)
        {
            throw new NotSupportedException(String.Concat(
                "Parse is not supported on a field. Content: ", this.Content.Path,
                ", ContentType: ", this.Content.ContentType.Name,
                ", Field: ", this.Name,
                ", FieldType: ", this.FieldSetting.ShortName));
        }
        public virtual bool HasValue()