Catel.Fody.Weaving.XmlSchemas.XmlSchemasWeaver.GetXmlSchemaMethodName C# (CSharp) Метод

GetXmlSchemaMethodName() приватный Метод

private GetXmlSchemaMethodName ( CatelType catelType ) : string
catelType CatelType
Результат string
        private string GetXmlSchemaMethodName(CatelType catelType)
        {
            var methodName = $"GetXmlSchemaFor{catelType.TypeDefinition.FullName}";

            return methodName.Replace(".", string.Empty).Replace("<", string.Empty).Replace(">", string.Empty).Replace("`", string.Empty);
        }
    }