Create “Protected ReadOnly Property AllFieldNamesStringCollection() As StringCollection” method for use with QueryInformation objects. Currently, you must use the following construct (C#):
string[] allFields = this.AllFieldsList.ToArray();
queryInfo.Fields = StringBasics.CreateStringCollection(allFields);
This should be encapsulated in this new method as follows:
string() allFields = Me.AllFieldsList.ToArray();
return StringBasics.CreateStringCollection(allFields);