Gurux.DLMS.TranslatorStandardTags.GetApplicationReference C# (CSharp) Method

GetApplicationReference() static private method

static private GetApplicationReference ( ) : String>.Dictionary
return String>.Dictionary
    static Dictionary<ApplicationReference, String> GetApplicationReference()
    {
        Dictionary<ApplicationReference, String> list =
            new Dictionary<ApplicationReference, String>();
        list.Add(ApplicationReference.ApplicationContextUnsupported,
                 "application-context-unsupported");
        list.Add(ApplicationReference.ApplicationReferenceInvalid,
                 "application-reference-invalid");
        list.Add(ApplicationReference.ApplicationUnreachable,
                 "application-unreachable");
        list.Add(ApplicationReference.DecipheringError, "deciphering-error");
        list.Add(ApplicationReference.Other, "other");
        list.Add(ApplicationReference.ProviderCommunicationError,
                 "provider-communication-error");
        list.Add(ApplicationReference.TimeElapsed, "time-elapsed");
        return list;
    }

Same methods

TranslatorStandardTags::GetApplicationReference ( String value ) : int