AccidentalFish.ApplicationSupport.Logging.QueueLogger.Model.LogTableItem.SetPartitionAndRowKeyForLogBySource C# (CSharp) Метод

SetPartitionAndRowKeyForLogBySource() публичный Метод

public SetPartitionAndRowKeyForLogBySource ( ) : void
Результат void
        public void SetPartitionAndRowKeyForLogBySource()
        {
            PartitionKey = Source;
            RowKey =
                $"{Enum.GetValues(typeof (LogLevelEnum)).Cast<LogLevelEnum>().Max() - Level}_{DateTimeOffset.MaxValue.Ticks - LoggedAt.Ticks:D19}{Guid.NewGuid()}";
        }