/// <summary>
        /// The use properties.
        /// </summary>
        /// <param name="properties">
        /// The properties.
        /// </param>
        private void UseProperties(SPItemEventProperties properties)
        {
            UnifiedLoggingServer.LogMedium("---- UseProperties ----");

            if (properties.ListTitle.Contains("Drop Off Library"))
            {
                try
                {
                    SPSecurity.RunWithElevatedPrivileges(delegate
                    {
                        SPListItem dropOffListItem = properties.ListItem;

                        using (RecordCentreManager rcm = new RecordCentreManager(dropOffListItem, properties.WebUrl))
                        {
                            UnifiedLoggingServer.LogMedium(rcm.ToString());
                            rcm.TraceLog("TraceLog_RCM_");
                        }
                    });
                }
                catch (Exception e)
                {
                    throw new SPException("An error occured while processing the list Feature/ UseProperties.\n" + e.Message, e);
                }
            }
        }
        public void TraceLogTest()
        {
            SPListItem          dropOffListItem = null;                                          // TODO: Initialize to an appropriate value
            string              url             = string.Empty;                                  // TODO: Initialize to an appropriate value
            RecordCentreManager target          = new RecordCentreManager(dropOffListItem, url); // TODO: Initialize to an appropriate value
            string              header          = string.Empty;                                  // TODO: Initialize to an appropriate value

            target.TraceLog(header);
            Assert.Inconclusive("A method that does not return a value cannot be verified.");
        }