Microsoft.Protocols.TestSuites.Common.NotificationData.HasFolderId C# (CSharp) Method

HasFolderId() private method

Indicate if the folder id exist
private HasFolderId ( ) : bool
return bool
        private bool HasFolderId()
        {
            if ((this.NotificationFlags & 0x0100) != 0x0100 &&
               (this.NotificationFlags & 0x0200) != 0x0200 &&
               (this.NotificationFlags & 0x0400) != 0x0400)
            {
                return true;
            }
            else
            {
                return false;
            }
        }