You create a Microsoft Office InfoPath form library. You need to provide users with the ability to convert new forms to web pages on demand. You must use an existing document converter.
Which code segment would you use?
A.
Dim dc as SPDocumentConverter =
SPContext.Current.Site.WebApplication.DocumentConverters(“0987…GUID…1234”)
B.
Dim dc as SPDocumentConverter =
SPContext.Current.Site.WebApplication.DocumentConverters(“FromInfoPathFormToWebPage”)
C.
Dim dc as SPDocumentConverter = SPContext.Current.Site.WebApplication.DocumentConverters.GetConverter( NewGUID())
D.
Dim dc as SPDocumentConverter =
SPContext.Current.Site.WebApplication.DocumentConverters.GetConverter(0987…GUID…1234)