All Downloads are FREE. Search and download functionalities are using the official Maven repository.

runtime.csharp.IRT.Transport.Authorization.AuthCustom.cs Maven / Gradle / Ivy


namespace IRT.Transport.Authorization {
    class AuthCustom: AuthMethod {
        public string Value;

        public AuthCustom(string value = null) {
            Value = value;
        }

        public override bool FromValue(string value) {
            Value = value;
            return true;
        }

        public override string ToValue() {
            return Value;
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy