OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:AuthProperty
(Results
1 - 2
of
2
) sorted by null
/external/grpc-grpc/include/grpcpp/impl/codegen/security/
auth_context.h
35
typedef std::pair<grpc::string_ref, grpc::string_ref>
AuthProperty
;
38
: public std::iterator<std::input_iterator_tag, const
AuthProperty
> {
45
const
AuthProperty
operator*();
/external/grpc-grpc/src/csharp/Grpc.Core/
AuthProperty.cs
31
public class
AuthProperty
37
private
AuthProperty
(string name, byte[] valueBytes)
80
/// Creates an instance of <c>
AuthProperty
</c>.
84
public static
AuthProperty
Create(string name, byte[] valueBytes)
89
return new
AuthProperty
(name, valueCopy);
104
/// Creates and instance of <c>
AuthProperty
</c> without making a defensive copy of <c>valueBytes</c>.
106
internal static
AuthProperty
CreateUnsafe(string name, byte[] valueBytes)
108
return new
AuthProperty
(name, valueBytes);
Completed in 1540 milliseconds