SMShound.Clases.Entrada.ObtenerIdentificador C# (CSharp) Method

ObtenerIdentificador() private method

private ObtenerIdentificador ( string pStrContenidoAnterior = "" ) : string
pStrContenidoAnterior string
return string
        private string ObtenerIdentificador(string pStrContenidoAnterior = "")
        {
            return Utilidades.ConvertirArrayBytesAString(
                new MD5CryptoServiceProvider().ComputeHash(Encoding.UTF8.GetBytes(
                    this.Servicio + this.Origen + this.Contenido + HttpUtility.HtmlDecode(pStrContenidoAnterior)
                )));
        }