예제 #1
0
 internal static PropertyValue[] ConvertFromMapiPropRow(PropRow mapiPropRow, int codePage)
 {
     PropertyValue[] result = null;
     if (mapiPropRow != null)
     {
         PropValue[] mapiPropValues = mapiPropRow.Properties.ToArray <PropValue>();
         result = ConvertHelper.ConvertFromMapiPropValues(mapiPropValues, codePage);
     }
     return(result);
 }