EU.Europa.EC.Markt.Dss.Validation.Report.TrustedListInformation.GetStatusAtReferenceTime C# (CSharp) Method

GetStatusAtReferenceTime() public method

public GetStatusAtReferenceTime ( ) : string
return string
		public virtual string GetStatusAtReferenceTime()
		{
			if (trustService == null)
			{
				return null;
			}
			string status = trustService.GetStatusAtReferenceTime();
			int slashIndex = status.LastIndexOf('/');
			if (slashIndex > 0 && slashIndex < status.Length - 1)
			{
				status = Sharpen.Runtime.Substring(status, slashIndex + 1);
			}
			return status;
		}