Greetings,
I am trying to preform a search using an advanced search string. However I cannot seem to get the syntax correct for C#.net. Here is my code, see the "searchString" argument;
// Using the overloaded RepositoryRegistration constructor
RepositoryRegistration myRepoReg = new RepositoryRegistration("DevLF2.osds.com", "Development9");
Session mySess = new Session();
mySess.LogIn(myRepoReg);
// ====== Lookup Chart Number ====== 8/20/2014
Search LFSearch = new Search(mySess);
string searchString = "{LF:Name="*56565656", Type="F"}";
LFSearch.Command = searchString;
LFSearch.Run();
thanks for your assistance in advance!!
Phil