Res.Core.Storage.EventInStorage.EventInStorage C# (CSharp) Méthode

EventInStorage() public méthode

public EventInStorage ( System.Guid eventId, string context, string stream, long sequence, long globalSequence, System.DateTime timestamp, string typeKey, string headers, string body ) : System
eventId System.Guid
context string
stream string
sequence long
globalSequence long
timestamp System.DateTime
typeKey string
headers string
body string
Résultat System
        public EventInStorage(Guid eventId, string context, string stream, long sequence, long globalSequence, DateTime timestamp, string typeKey, string headers, string body)
        {
            EventId = eventId;
            Context = context;
            Stream = stream;
            Sequence = sequence;
            GlobalSequence = globalSequence;
            Timestamp = timestamp;
            TypeKey = typeKey;
            Body = body;
            Headers = headers;
        }
EventInStorage