Added Packages

This commit is contained in:
2024-04-04 11:40:14 +02:00
parent 056cded092
commit e550f67842
663 changed files with 92272 additions and 0 deletions

Binary file not shown.

View File

@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd">
<metadata>
<id>Grpc.Auth</id>
<version>2.60.0</version>
<authors>The gRPC Authors</authors>
<license type="expression">Apache-2.0</license>
<licenseUrl>https://licenses.nuget.org/Apache-2.0</licenseUrl>
<icon>packageIcon.png</icon>
<readme>README.md</readme>
<projectUrl>https://github.com/grpc/grpc-dotnet</projectUrl>
<description>gRPC C# Authentication Library</description>
<copyright>Copyright 2019 The gRPC Authors</copyright>
<tags>gRPC RPC HTTP/2 Auth OAuth2</tags>
<repository type="git" url="https://github.com/grpc/grpc-dotnet.git" commit="6eccb614c532d52c1569ce9f14754fdc826609ef" />
<dependencies>
<group targetFramework=".NETFramework4.6.2">
<dependency id="Grpc.Core.Api" version="2.60.0" exclude="Build,Analyzers" />
<dependency id="Google.Apis.Auth" version="1.46.0" exclude="Build,Analyzers" />
</group>
<group targetFramework=".NETStandard2.0">
<dependency id="Grpc.Core.Api" version="2.60.0" exclude="Build,Analyzers" />
<dependency id="Google.Apis.Auth" version="1.46.0" exclude="Build,Analyzers" />
</group>
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="Microsoft.CSharp" targetFramework=".NETFramework4.6.2" />
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.6.2" />
</frameworkAssemblies>
</metadata>
</package>

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: e45245e1e627aae45b2786fe2dd62f77
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,3 @@
# Grpc.Auth
`Grpc.Auth` is the gRPC C#/.NET authentication library based on `Google.Apis.Auth`

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: da8344f11a1d72c43a473325af3e3000
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 7406c8339728dec40b4acd4a68271c0e
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 8210c47f2e6c22148be34204e4ba63a4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View 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:

View 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>

View File

@ -0,0 +1,7 @@
fileFormatVersion: 2
guid: f3bfba6f74e620445951d02ee0e0f780
TextScriptImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

Binary file not shown.

After

Width:  |  Height:  |  Size: 30 KiB

View File

@ -0,0 +1,127 @@
fileFormatVersion: 2
guid: 47ebe27dab4746448a6ef446f96677aa
TextureImporter:
internalIDToNameTable: []
externalObjects: {}
serializedVersion: 12
mipmaps:
mipMapMode: 0
enableMipMap: 1
sRGBTexture: 1
linearTexture: 0
fadeOut: 0
borderMipMap: 0
mipMapsPreserveCoverage: 0
alphaTestReferenceValue: 0.5
mipMapFadeDistanceStart: 1
mipMapFadeDistanceEnd: 3
bumpmap:
convertToNormalMap: 0
externalNormalMap: 0
heightScale: 0.25
normalMapFilter: 0
flipGreenChannel: 0
isReadable: 0
streamingMipmaps: 0
streamingMipmapsPriority: 0
vTOnly: 0
ignoreMipmapLimit: 0
grayScaleToAlpha: 0
generateCubemap: 6
cubemapConvolution: 0
seamlessCubemap: 0
textureFormat: 1
maxTextureSize: 2048
textureSettings:
serializedVersion: 2
filterMode: 1
aniso: 1
mipBias: 0
wrapU: 0
wrapV: 0
wrapW: 0
nPOTScale: 1
lightmap: 0
compressionQuality: 50
spriteMode: 0
spriteExtrude: 1
spriteMeshType: 1
alignment: 0
spritePivot: {x: 0.5, y: 0.5}
spritePixelsToUnits: 100
spriteBorder: {x: 0, y: 0, z: 0, w: 0}
spriteGenerateFallbackPhysicsShape: 1
alphaUsage: 1
alphaIsTransparency: 0
spriteTessellationDetail: -1
textureType: 0
textureShape: 1
singleChannelComponent: 0
flipbookRows: 1
flipbookColumns: 1
maxTextureSizeSet: 0
compressionQualitySet: 0
textureFormatSet: 0
ignorePngGamma: 0
applyGammaDecoding: 0
swizzle: 50462976
cookieLightType: 0
platformSettings:
- serializedVersion: 3
buildTarget: DefaultTexturePlatform
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: Standalone
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
- serializedVersion: 3
buildTarget: WebGL
maxTextureSize: 2048
resizeAlgorithm: 0
textureFormat: -1
textureCompression: 1
compressionQuality: 50
crunchedCompression: 0
allowsAlphaSplitting: 0
overridden: 0
ignorePlatformSupport: 0
androidETC2FallbackOverride: 0
forceMaximumCompressionQuality_BC6H_BC7: 0
spriteSheet:
serializedVersion: 2
sprites: []
outline: []
physicsShape: []
bones: []
spriteID:
internalID: 0
vertices: []
indices:
edges: []
weights: []
secondaryTextures: []
nameFileIdTable: {}
mipmapLimitGroupName:
pSDRemoveMatte: 0
userData:
assetBundleName:
assetBundleVariant: