runtime.csharp.IRT.Transport.Authorization.AuthToken.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-csharp_2.12 Show documentation
Show all versions of idealingua-v1-runtime-rpc-csharp_2.12 Show documentation
idealingua-v1-runtime-rpc-csharp
The newest version!
namespace IRT.Transport.Authorization {
class AuthToken: AuthMethod {
public string Token;
public AuthToken(string token = null) {
Token = token;
}
public override bool FromValue(string value) {
return false;
}
public override string ToValue() {
return "Bearer " + Token;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy