59 lines
1.0 KiB
Plaintext
59 lines
1.0 KiB
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
[source,vbnet]
|
|
----
|
|
Imports System
|
|
|
|
Namespace myLibrary
|
|
Public Class MyExtension
|
|
Inherits MarkupExtension
|
|
|
|
Public Sub New()
|
|
End Sub
|
|
|
|
Public Sub New(ByVal value1 As Object)
|
|
Value1 = value1
|
|
End Sub
|
|
|
|
<ConstructorArgument("value2")> ' Noncompliant
|
|
Public Property Value1 As Object
|
|
End Class
|
|
End Namespace
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
[source,vbnet]
|
|
----
|
|
Imports System
|
|
|
|
Namespace MyLibrary
|
|
Public Class MyExtension
|
|
Inherits MarkupExtension
|
|
|
|
Public Sub New()
|
|
End Sub
|
|
|
|
Public Sub New(ByVal value1 As Object)
|
|
Value1 = value1
|
|
End Sub
|
|
|
|
<ConstructorArgument("value1")>
|
|
Public Property Value1 As Object
|
|
End Class
|
|
End Namespace
|
|
----
|
|
ifdef::env-github,rspecator-view[]
|
|
|
|
'''
|
|
== Implementation Specification
|
|
(visible only on this page)
|
|
|
|
include::../message.adoc[]
|
|
|
|
include::../highlighting.adoc[]
|
|
|
|
endif::env-github,rspecator-view[]
|