Modify a known conference

[This is preliminary documentation and subject to change.]

// obtain the ITConferenceDirectory interface
 

// get the conference announcement (by name)
BSTR Name = SysAllocString(L"MyConference");
pITConferenceDirectory->GetConferenceAnnouncement(
    Name,
    &pITConference
    );

// modify attributes
BSTR NewName = SysAllocString(L"MyNewConference");
pITConference->put_Name(
    NewName
    );