Added Packages
This commit is contained in:
8
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0.meta
vendored
Normal file
8
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0.meta
vendored
Normal file
@ -0,0 +1,8 @@
|
||||
fileFormatVersion: 2
|
||||
guid: 8210c47f2e6c22148be34204e4ba63a4
|
||||
folderAsset: yes
|
||||
DefaultImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
BIN
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.dll
vendored
Normal file
BIN
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.dll
vendored
Normal file
Binary file not shown.
23
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.dll.meta
vendored
Normal file
23
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.dll.meta
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
fileFormatVersion: 2
|
||||
guid: d6c57a5576ed96e438d2e5f8e96b0b0d
|
||||
labels:
|
||||
- NuGetForUnity
|
||||
PluginImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
iconMap: {}
|
||||
executionOrder: {}
|
||||
defineConstraints: []
|
||||
isPreloaded: 0
|
||||
isOverridable: 0
|
||||
isExplicitlyReferenced: 0
|
||||
validateReferences: 1
|
||||
platformData:
|
||||
- first:
|
||||
Any:
|
||||
second:
|
||||
enabled: 1
|
||||
settings: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
81
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.xml
vendored
Normal file
81
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.xml
vendored
Normal file
@ -0,0 +1,81 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Grpc.Auth</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Grpc.Auth.GoogleAuthInterceptors">
|
||||
<summary>
|
||||
Factory methods to create authorization interceptors for Google credentials.
|
||||
<seealso cref="T:Grpc.Auth.GoogleGrpcCredentials"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccess)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Grpc.Core.AsyncAuthInterceptor"/> that will obtain access token from any credential type that implements
|
||||
<c>ITokenAccess</c>. (e.g. <c>GoogleCredential</c>).
|
||||
</summary>
|
||||
<param name="credential">The credential to use to obtain access tokens.</param>
|
||||
<returns>The interceptor.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleAuthInterceptors.FromCredential(Google.Apis.Auth.OAuth2.ITokenAccessWithHeaders)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Grpc.Core.AsyncAuthInterceptor"/> that will obtain access token and associated information
|
||||
from any credential type that implements <see cref="T:Google.Apis.Auth.OAuth2.ITokenAccessWithHeaders"/>
|
||||
</summary>
|
||||
<param name="credential">The credential to use to obtain access tokens.</param>
|
||||
<returns>The interceptor.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleAuthInterceptors.FromAccessToken(System.String)">
|
||||
<summary>
|
||||
Creates an <see cref="T:Grpc.Core.AsyncAuthInterceptor"/> that will use given access token as authorization.
|
||||
</summary>
|
||||
<param name="accessToken">OAuth2 access token.</param>
|
||||
<returns>The interceptor.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleAuthInterceptors.GetCompletedTask">
|
||||
<summary>
|
||||
Framework independent equivalent of <c>Task.CompletedTask</c>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Grpc.Auth.GoogleGrpcCredentials">
|
||||
<summary>
|
||||
Factory/extension methods to create instances of <see cref="T:Grpc.Core.ChannelCredentials"/> and <see cref="T:Grpc.Core.CallCredentials"/> classes
|
||||
based on credential objects originating from Google auth library.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleGrpcCredentials.GetApplicationDefaultAsync">
|
||||
<summary>
|
||||
Retrieves an instance of Google's Application Default Credentials using
|
||||
<c>GoogleCredential.GetApplicationDefaultAsync()</c> and converts them
|
||||
into a gRPC <see cref="T:Grpc.Core.ChannelCredentials"/> that use the default SSL credentials.
|
||||
</summary>
|
||||
<returns>The <c>ChannelCredentials</c> instance.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleGrpcCredentials.FromAccessToken(System.String)">
|
||||
<summary>
|
||||
Creates an instance of <see cref="T:Grpc.Core.CallCredentials"/> that will use given access token to authenticate
|
||||
with a gRPC service.
|
||||
</summary>
|
||||
<param name="accessToken">OAuth2 access token.</param>
|
||||
<returns>The <c>CallCredentials</c> instance.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleGrpcCredentials.ToCallCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)">
|
||||
<summary>
|
||||
Converts a <c>ITokenAccess</c> (e.g. <c>GoogleCredential</c>) object
|
||||
into a gRPC <see cref="T:Grpc.Core.CallCredentials"/> object.
|
||||
</summary>
|
||||
<param name="credential">The credential to use to obtain access tokens.</param>
|
||||
<returns>The <c>CallCredentials</c> instance.</returns>
|
||||
</member>
|
||||
<member name="M:Grpc.Auth.GoogleGrpcCredentials.ToChannelCredentials(Google.Apis.Auth.OAuth2.ITokenAccess)">
|
||||
<summary>
|
||||
Converts a <c>ITokenAccess</c> (e.g. <c>GoogleCredential</c>) object
|
||||
into a gRPC <see cref="T:Grpc.Core.ChannelCredentials"/> object.
|
||||
Default SSL credentials are used.
|
||||
</summary>
|
||||
<param name="googleCredential">The credential to use to obtain access tokens.</param>
|
||||
<returns>>The <c>ChannelCredentials</c> instance.</returns>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
7
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.xml.meta
vendored
Normal file
7
3d Prototyp/Assets/Packages/Grpc.Auth.2.60.0/lib/netstandard2.0/Grpc.Auth.xml.meta
vendored
Normal file
@ -0,0 +1,7 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f3bfba6f74e620445951d02ee0e0f780
|
||||
TextScriptImporter:
|
||||
externalObjects: {}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
Reference in New Issue
Block a user