EventHubListenerLib.EventHubListenerOptions.StartWithOffset C# (CSharp) Method

StartWithOffset() public method

public StartWithOffset ( string offSet, bool IsInclusive ) : EventHubListenerOptions
offSet string
IsInclusive bool
return EventHubListenerOptions
        public EventHubListenerOptions StartWithOffset(string offSet, bool IsInclusive)
        {
            Offset = offSet;
            IsOffsetInclusive = IsInclusive;
            IsOffset = true;
            return this;
        }