Adf.Data.InternalState.InternalStatusEngine.ParseKey C# (CSharp) Method

ParseKey() private static method

Returns a string comprising the specified current InternalStatus and desired InternalStatus.
private static ParseKey ( InternalStatus current, InternalStatus desired ) : string
current InternalStatus The current .
desired InternalStatus The desired .
return string
        private static string ParseKey(InternalStatus current, InternalStatus desired)
        {
            return string.Format("{0} : {1}", current, desired);
        }