Summer.Batch.Core.Unity.StepScope.StepScopeLifetimeManager.GetValue C# (CSharp) Method

GetValue() public method

Retrieves the stored object if it exists.
public GetValue ( ) : object
return object
        public override object GetValue()
        {
            return Context.GetAttribute(_name);
        }

Usage Example

        public void TestGetValue()
        {
            var manager = new StepScopeLifetimeManager();
            StepSynchronizationManager.Register(_stepExecution1);

            var result = manager.GetValue();

            Assert.IsNull(result);
        }
All Usage Examples Of Summer.Batch.Core.Unity.StepScope.StepScopeLifetimeManager::GetValue
StepScopeLifetimeManager