AssessmentAnywhere.Services.Assessments.Assessment.SetName C# (CSharp) Method

SetName() public method

public SetName ( string name ) : void
name string
return void
        public void SetName(string name)
        {
            if (string.IsNullOrWhiteSpace(name))
            {
                throw new ArgumentException("Name must have a value.", "name");
            }

            this.Name = name;
        }