CandyWrapper.CandyWrapper.doGetNoteAttachment C# (CSharp) Method

doGetNoteAttachment() public method

public doGetNoteAttachment ( string sSession, string sID ) : string[]
sSession string
sID string
return string[]
        public string[] doGetNoteAttachment(string sSession, string sID)
        {
            SugarCRM.return_note_attachment oSugarReturnNoteAttach = oSugarCRM.get_note_attachment(sSession, sID);
            SugarCRM.note_attachment oSugarNoteAttach = oSugarReturnNoteAttach.note_attachment;

            string[] saResults = new string[2];
            saResults[0] = oSugarNoteAttach.file;
            saResults[1] = oSugarNoteAttach.filename;

            return saResults;
        }