runtime.csharp.IRT.Transport.Authorization.AuthCustom.cs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
Show all versions of idealingua-v1-runtime-rpc-c-sharp_2.13 Show documentation
idealingua-v1-runtime-rpc-c-sharp
The newest version!
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;
}
}
}