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

GetExportName() static private method

static private GetExportName ( string fieldName, FieldSubType &subType ) : string
fieldName string
subType FieldSubType
return string
		internal static string GetExportName(string fieldName, out FieldSubType subType)
		{
			if (fieldName[0] == '#')
			{
				subType = FieldSubType.ContentList;
				return fieldName.Substring(1);
			}
			subType = FieldSubType.General;
			return fieldName;
		}
		internal static string ParseImportName(string importName, FieldSubType subType)