include::../description.adoc[] include::../ask-yourself.adoc[] include::../recommended.adoc[] == Sensitive Code Example At Controller level: ---- Public Function Welcome(Name As String) As ActionResult ... End Function ---- At application level, configured in the Web.config file: ---- ... ---- == Compliant Solution At Controller level: [source,vbnet] ---- Public Function Welcome(Name As String) As ActionResult ... End Function ---- or [source,vbnet] ---- Public Function Welcome(Name As String) As ActionResult ... End Function ---- At application level, configured in the Web.config file: [source,vbnet] ---- ... ---- include::../see.adoc[] ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::../message.adoc[] ''' == Comments And Links (visible only on this page) === on 15 Jan 2021, 18:31:49 Andrei Epure wrote: == Sensitive Code Example At application level, configured in the Web.config file: ---- ... ---- == Compliant Solution At application level, configured in the Web.config file: [source,vbnet] ---- ... ---- include::../comments-and-links.adoc[] endif::env-github,rspecator-view[]