To get the enumeration text instead of its value, write following code
For example
public enum EnumType
{
Type1,
Type2
}
If you write EnumType.Type1 its value will be treated as 1 but if you want to get the Type1 then write following code.
string enumValue = EnumType.Type1.ToString();
Thanks