Catel.Fody.Weaving.XmlSchemas.XmlSchemasWeaver.GetXmlSchemaMethodName C# (CSharp) Method

GetXmlSchemaMethodName() private method

private GetXmlSchemaMethodName ( CatelType catelType ) : string
catelType CatelType
return 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);
        }
    }