Skip to content

Commit

Permalink
Added TnefPropertyId.LastModifierName
Browse files Browse the repository at this point in the history
Partial fix for issue #538
  • Loading branch information
jstedfast committed Mar 3, 2020
1 parent a53770e commit 8c0d743
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
5 changes: 5 additions & 0 deletions MimeKit/Tnef/TnefPropertyId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1117,6 +1117,11 @@ public enum TnefPropertyId : short {
/// </summary>
LastModificationTime = 0x3008,

/// <summary>
/// The MAPI property PR_LAST_MODIFIER_NAME.
/// </summary>
LastModifierName = 0x3FFA,

/// <summary>
/// The MAPI property PR_LATEST_DELIVERY_TIME.
/// </summary>
Expand Down
16 changes: 16 additions & 0 deletions MimeKit/Tnef/TnefPropertyTag.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2483,6 +2483,22 @@ public struct TnefPropertyTag
/// </remarks>
public static readonly TnefPropertyTag LastModificationTime = new TnefPropertyTag (TnefPropertyId.LastModificationTime, TnefPropertyType.SysTime);

/// <summary>
/// The MAPI property PR_LAST_MODIFIER_NAME.
/// </summary>
/// <remarks>
/// The MAPI property PR_LAST_MODIFIER_NAME.
/// </remarks>
public static readonly TnefPropertyTag LastModifierNameA = new TnefPropertyTag (TnefPropertyId.LastModifierName, TnefPropertyType.String8);

/// <summary>
/// The MAPI property PR_LAST_MODIFIER_NAME.
/// </summary>
/// <remarks>
/// The MAPI property PR_LAST_MODIFIER_NAME.
/// </remarks>
public static readonly TnefPropertyTag LastModifierNameW = new TnefPropertyTag (TnefPropertyId.LastModifierName, TnefPropertyType.Unicode);

/// <summary>
/// The MAPI property PR_LATEST_DELIVERY_TIME.
/// </summary>
Expand Down

0 comments on commit 8c0d743

Please sign in to comment.