_Conversation.GetAlwaysAssignCategories(Store) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a String (string in C#) that indicates the category or categories that are assigned to all new items that arrive in the conversation.
public:
System::String ^ GetAlwaysAssignCategories(Microsoft::Office::Interop::Outlook::Store ^ Store);
public string GetAlwaysAssignCategories (Microsoft.Office.Interop.Outlook.Store Store);
Parameters
- Store
- Store
A Store object that represents the store to which categories of items that belong to the conversation should be returned.
Returns
A String (string in C#) that contains one or more categories that are assigned to items in the conversation.
Remarks
Multiple categories are delimited by commas in the string of category names that this property returns. To convert the string of category names to an array of category names, use the Microsoft Visual Basic Split function.
If the store specified by the Store
parameter represents a non-delivery store such as an archive .pst store, the method returns a string of categories that are applied to conversation items in the default delivery store.
If the SetAlwaysAssignCategories(String, Store) method has not been applied to a conversation, GetAlwaysAssignCategories returns Nothing (a null reference (Nothing in Visual Basic) in C#).
To stop the action of always assigning categories, use the ClearAlwaysAssignCategories(Store) method. After the ClearAlwaysAssignCategories method has been called, GetAlwaysAssignCategories returns an empty string.