예제 #1
0
 String GetCollectionItemXmlElementName(PersonInsight insight)
 {
     return(this.collectionItemXmlElementName);
 }
예제 #2
0
 /// <summary>
 /// Adds an insight to the collection.
 /// </summary>
 /// <param name="insight">The insight to add.</param>
 void Add(PersonInsight insight)
 {
     this.InternalAdd(insight);
 }
예제 #3
0
    /// <summary>
    /// Removes a person insight from the collection.
    /// </summary>
    /// <param name="insight">The person sight to remove.</param>
    /// <returns>Whether removed from the collection</returns>
    bool Remove(PersonInsight insight)
    {
        EwsUtilities.ValidateParam(insight, "insight");

        return(this.InternalRemove(insight));
    }