add beginnings to safe browsing integration

This commit is contained in:
RandomHuman 2023-06-25 16:33:44 -06:00
parent 4506a0d460
commit b74eca3d38
No known key found for this signature in database
GPG key ID: 6003A79AC08E8F3B
67 changed files with 100000 additions and 2 deletions

View file

@ -33,6 +33,10 @@
<assemblyIdentity name="ExCSS" publicKeyToken="bdbe16be9b936b9a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.2.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-13.0.0.0" newVersion="13.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

View file

@ -4,11 +4,49 @@ using System.Windows.Forms;
using CefSharp;
using CefSharp.WinForms;
using EasyTabs;
using Google.Apis.Safebrowsing.v4;
using Google.Apis.Safebrowsing.v4.Data;
using Google.Apis.Services;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace XeroBrowser
{
public static class Program
{
public static async Task<bool> IsUrlUnsafe(string url, string apiKey)
{
var safeBrowsingService = new SafebrowsingService(new BaseClientService.Initializer
{
ApiKey = "AIzaSyCQV - s52iNah - il6T5iFuqo6M_JzcLyaxs",
ApplicationName = "XeroBrowser"
});
var request = new GoogleSecuritySafebrowsingV4FindThreatMatchesRequest
{
Client = new GoogleSecuritySafebrowsingV4ClientInfo { ClientId = "XeroBrowser", ClientVersion = "1.0" },
ThreatInfo = new GoogleSecuritySafebrowsingV4ThreatInfo
{
ThreatTypes = new List<string>
{
"MALWARE",
"SOCIAL_ENGINEERING",
"UNWANTED_SOFTWARE",
"POTENTIALLY_HARMFUL_APPLICATION"
},
PlatformTypes = new List<string> { "ANY_PLATFORM" },
ThreatEntryTypes = new List<string> { "URL" },
ThreatEntries = new List<GoogleSecuritySafebrowsingV4ThreatEntry> { new GoogleSecuritySafebrowsingV4ThreatEntry { Url = url } }
}
};
var response = await safeBrowsingService.ThreatMatches.Find(request).ExecuteAsync();
return response != null && response.Matches != null && response.Matches.Count > 0;
}
public static AppContainer Container;
private static TitleBarTabsApplicationContext _applicationContext;
@ -26,6 +64,9 @@ namespace XeroBrowser
settings.UserAgent = "Mozilla/5.0 (Windows NT 11.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 XeroBrowser/1.0.0";
settings.CefCommandLineArgs.Add("enable-media-stream", "1");
settings.CachePath = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + @"\CEF";
settings.CefCommandLineArgs.Add("safebrowsing-disable-download-protection", "0");
settings.CefCommandLineArgs.Add("safebrowsing-disable-extension-blacklist", "0");
settings.CefCommandLineArgs.Add("safebrowsing-disable-auto-update", "0");
Cef.Initialize(settings);

View file

@ -204,12 +204,27 @@
<Reference Include="Fizzler, Version=1.3.0.0, Culture=neutral, PublicKeyToken=4ebff4844e382110, processorArchitecture=MSIL">
<HintPath>..\packages\Fizzler.1.3.0\lib\netstandard2.0\Fizzler.dll</HintPath>
</Reference>
<Reference Include="Google.Apis, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Apis.1.60.0\lib\net45\Google.Apis.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Core, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Apis.Core.1.60.0\lib\net45\Google.Apis.Core.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.PlatformServices, Version=1.60.0.0, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Apis.1.60.0\lib\net45\Google.Apis.PlatformServices.dll</HintPath>
</Reference>
<Reference Include="Google.Apis.Safebrowsing.v4, Version=1.60.0.2968, Culture=neutral, PublicKeyToken=4b01fa6e34db77ab, processorArchitecture=MSIL">
<HintPath>..\packages\Google.Apis.Safebrowsing.v4.1.60.0.2968\lib\net45\Google.Apis.Safebrowsing.v4.dll</HintPath>
</Reference>
<Reference Include="Microsoft.WindowsAPICodePack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\EasyTabs.2.0.0\lib\net40\Microsoft.WindowsAPICodePack.dll</HintPath>
</Reference>
<Reference Include="Microsoft.WindowsAPICodePack.Shell, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\EasyTabs.2.0.0\lib\net40\Microsoft.WindowsAPICodePack.Shell.dll</HintPath>
</Reference>
<Reference Include="Newtonsoft.Json, Version=13.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\packages\Newtonsoft.Json.13.0.2\lib\net45\Newtonsoft.Json.dll</HintPath>
</Reference>
<Reference Include="Svg, Version=3.4.0.0, Culture=neutral, PublicKeyToken=12a0bac221edeae2, processorArchitecture=MSIL">
<HintPath>..\packages\Svg.3.4.4\lib\net462\Svg.dll</HintPath>
</Reference>

View file

@ -6,6 +6,11 @@ using Bunifu.Utils;
using CefSharp;
using CefSharp.WinForms;
using EasyTabs;
using Google.Apis.Safebrowsing.v4;
using Google.Apis.Safebrowsing.v4.Data;
using Google.Apis.Services;
using System.Collections.Generic;
using System.Threading.Tasks;
using XeroBrowser.Properties;
using static System.Net.WebRequestMethods;
// ReSharper disable PossibleNullReferenceException
@ -66,6 +71,21 @@ namespace XeroBrowser
private bool _isBlocked;
private void chromiumWebBrowser1_LoadingStateChanged(object sender, LoadingStateChangedEventArgs e)
{
// chromiumWebBrowser1.LoadingStateChanged += async (s, args) =>
// {
// if (args.IsLoading)
// {
// var isUnsafe = await Program.IsUrlUnsafe(args.Browser.MainFrame.Url, "AIzaSyCQV-s52iNah-il6T5iFuqo6M_JzcLyaxs");
// if (isUnsafe)
// {
// chromiumWebBrowser1.Stop(); // cancel the navigation
// _isBlocked = true;
// chromiumWebBrowser1.LoadHtml("");
// break;
// }
// }
// };
if (e.IsLoading)
{
loadingIndicator.Visible = true;

View file

@ -9,6 +9,10 @@
<package id="EasyTabs" version="2.0.0" targetFramework="net48" />
<package id="ExCSS" version="4.2.0" targetFramework="net48" />
<package id="Fizzler" version="1.3.0" targetFramework="net48" />
<package id="Google.Apis" version="1.60.0" targetFramework="net48" />
<package id="Google.Apis.Core" version="1.60.0" targetFramework="net48" />
<package id="Google.Apis.Safebrowsing.v4" version="1.60.0.2968" targetFramework="net48" />
<package id="Newtonsoft.Json" version="13.0.2" targetFramework="net48" />
<package id="Svg" version="3.4.4" targetFramework="net48" />
<package id="System.Buffers" version="4.5.1" targetFramework="net48" />
<package id="System.Memory" version="4.5.5" targetFramework="net48" />

View file

@ -30,8 +30,10 @@ Global
{A82CD8AB-AAAE-4451-BD32-F1610C9A92CB}.Release|x64.Build.0 = Release|x64
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|Default.ActiveCfg = Debug
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Debug|x64.ActiveCfg = Debug
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Debug
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Debug
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.ActiveCfg = Release
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|Default.Build.0 = Release
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.ActiveCfg = Release
{E7497DEF-8028-4610-9B9A-94B0B1136B7A}.Release|x64.Build.0 = Release
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE

Binary file not shown.

Binary file not shown.

176
packages/Google.Apis.1.60.0/LICENSE vendored Normal file
View file

@ -0,0 +1,176 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

Binary file not shown.

176
packages/Google.Apis.Core.1.60.0/LICENSE vendored Normal file
View file

@ -0,0 +1,176 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

View file

@ -0,0 +1,176 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

View file

@ -0,0 +1,886 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.Apis.Safebrowsing.v4</name>
</assembly>
<members>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingService">
<summary>The Safebrowsing Service.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.Version">
<summary>The API version.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.DiscoveryVersionUsed">
<summary>The discovery version used to generate this service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor">
<summary>Constructs a new service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor(Google.Apis.Services.BaseClientService.Initializer)">
<summary>Constructs a new service.</summary>
<param name="initializer">The service initializer.</param>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Features">
<summary>Gets the service supported features.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Name">
<summary>Gets the service name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BaseUri">
<summary>Gets the service base URI.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BasePath">
<summary>Gets the service base path.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchUri">
<summary>Gets the batch base URI; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchPath">
<summary>Gets the batch base path; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedFullHashes">
<summary>Gets the EncodedFullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedUpdates">
<summary>Gets the EncodedUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.FullHashes">
<summary>Gets the FullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatHits">
<summary>Gets the ThreatHits resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatListUpdates">
<summary>Gets the ThreatListUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatLists">
<summary>Gets the ThreatLists resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatMatches">
<summary>Gets the ThreatMatches resource.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1">
<summary>A base abstract class for Safebrowsing requests.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new SafebrowsingBaseServiceRequest instance.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Xgafv">
<summary>V1 error format.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum">
<summary>V1 error format.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value1">
<summary>v1 error format</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value2">
<summary>v2 error format</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AccessToken">
<summary>OAuth access token.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Alt">
<summary>Data format for response.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum">
<summary>Data format for response.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Json">
<summary>Responses with Content-Type of application/json</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Media">
<summary>Media download with context-dependent Content-Type</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Proto">
<summary>Responses with Content-Type of application/x-protobuf</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Callback">
<summary>JSONP</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Fields">
<summary>Selector specifying which fields to include in a partial response.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Key">
<summary>
API key. Your API key identifies your project and provides you with API access, quota, and reports. Required
unless you provide an OAuth 2.0 token.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.OauthToken">
<summary>OAuth 2.0 token for the current user.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.PrettyPrint">
<summary>Returns response with indentations and line breaks.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.QuotaUser">
<summary>
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a
user, but should not exceed 40 characters.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadType">
<summary>Legacy upload protocol for media (e.g. "media", "multipart").</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadProtocol">
<summary>Upload protocol for media (e.g. "raw", "multipart").</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.InitParameters">
<summary>Initializes Safebrowsing parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource">
<summary>The "encodedFullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FindFullHashesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.EncodedRequest">
<summary>A serialized FindFullHashesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource">
<summary>The "encodedUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FetchThreatListUpdatesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.EncodedRequest">
<summary>A serialized FetchThreatListUpdatesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientId">
<summary>
A client ID that uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource">
<summary>The "fullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.FullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource">
<summary>The "threatHits" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatHitsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.Create(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>Constructs a new Create request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.InitParameters">
<summary>Initializes Create parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource">
<summary>The "threatListUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.Fetch(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>Constructs a new Fetch request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.InitParameters">
<summary>Initializes Fetch parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource">
<summary>The "threatLists" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.List">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new List request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.InitParameters">
<summary>Initializes List parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource">
<summary>The "threatMatches" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty">
<summary>
A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical
example is to use it as the request or the response type of an API method. For instance: service Foo { rpc
Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum">
<summary>The expected state of a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.Sha256">
<summary>
The SHA256 hash of the client state; that is, of the sorted list of all hashes present in the database.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo">
<summary>The client metadata associated with Safe Browsing API requests.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest">
<summary>
Describes a Safe Browsing API update request. Clients can request updates for multiple lists in a single
request. The server may not respond to all requests, if the server has no updates for that list. NOTE: Field
index 2 is unused. NEXT: 5
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ListUpdateRequests">
<summary>The requested threat list updates.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest">
<summary>A single list update request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.Constraints">
<summary>The constraints associated with this request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.PlatformType">
<summary>The type of platform at risk by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.State">
<summary>
The current state of the client for the requested list (the encrypted client state that was received from
the last successful list update).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatEntryType">
<summary>The types of entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatType">
<summary>The type of threat posed by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints">
<summary>The constraints for this update.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.DeviceLocation">
<summary>A client's physical location, expressed as a ISO 31166-1 alpha-2 region code.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Language">
<summary>Requests the lists for a specific language. Expects ISO 639 alpha-2 format.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxDatabaseEntries">
<summary>
Sets the maximum number of entries that the client is willing to have in the local database for the
specified list. This should be a power of 2 between 2**10 and 2**20. If zero, no database size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxUpdateEntries">
<summary>
The maximum size in number of entries. The update will not contain more entries than this value. This should
be a power of 2 between 2**10 and 2**20. If zero, no update size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Region">
<summary>
Requests the list for a specific geographic location. If not set the server may pick that value based on the
user's IP address. Expects ISO 3166-1 alpha-2 format.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.SupportedCompressions">
<summary>The compression types supported by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ListUpdateResponses">
<summary>
The list updates requested by the clients. The number of responses here may be less than the number of
requests sent by clients. This is the case, for example, if the server has no updates for a particular list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any update request. If this field is not set
clients may update as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse">
<summary>An update to an individual list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Additions">
<summary>
A set of entries to add to a local threat type's list. Repeated to allow for a combination of compressed and
raw data to be sent in a single response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Checksum">
<summary>
The expected SHA256 hash of the client state; that is, of the sorted list of all hashes present in the
database after applying the provided update. If the client state doesn't match the expected state, the
client must disregard this update and retry later.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.NewClientState">
<summary>The new client state, in encrypted format. Opaque to clients.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.PlatformType">
<summary>The platform type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Removals">
<summary>
A set of entries to remove from a local threat type's list. In practice, this field is empty or contains
exactly one ThreatEntrySet.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ResponseType">
<summary>
The type of response. This may indicate that an action is required by the client when the response is
received.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatEntryType">
<summary>The format of the threats.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatType">
<summary>The threat type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest">
<summary>Request to return full hashes matched by the provided hash prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ApiClient">
<summary>
Client metadata associated with callers of higher-level APIs built on top of the client's implementation.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ClientStates">
<summary>The current client states for each of the client's local threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ThreatInfo">
<summary>The lists and hashes to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.Matches">
<summary>The full hashes that matched the requested prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any find hashes request. If this field is not set,
clients can issue a request as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.NegativeCacheDuration">
<summary>
For requested entities that did not match the threat list, how long to cache the response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest">
<summary>Request to check entries against lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ThreatInfo">
<summary>The lists and entries to be checked for matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.Matches">
<summary>The threat list matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ThreatLists">
<summary>The lists available for download by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes">
<summary>
The uncompressed threat entries in hash format of a particular prefix length. Hashes can be anywhere from 4 to
32 bytes in size. A large majority are 4 bytes, but some hashes are lengthened if they collide with the hash of
a popular URL. Used for sending ThreatEntrySet to clients that do not support compression, or when sending
non-4-byte hashes to clients that do support compression.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.PrefixSize">
<summary>
The number of bytes for each prefix encoded below. This field can be anywhere from 4 (shortest prefix) to 32
(full SHA256 hash).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.RawHashes">
<summary>
The hashes, in binary format, concatenated into one long string. Hashes are sorted in lexicographic order.
For JSON API users, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices">
<summary>A set of raw indices to remove from a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.Indices">
<summary>The indices to remove from a lexicographically-sorted local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding">
<summary>
The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or compressed removal indices.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.EncodedData">
<summary>The encoded deltas that are encoded using the Golomb-Rice coder.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.FirstValue">
<summary>
The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single
integer's value. If the field is empty or missing, assume zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.NumEntries">
<summary>
The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this
will be zero and the single value will be stored in `first_value`.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.RiceParameter">
<summary>
The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if
`num_entries` is zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry">
<summary>
An individual threat; for example, a malicious URL or its hash representation. Only one of these fields should
be set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Digest">
<summary>
The digest of an executable in SHA256 format. The API supports both binary and hex digests. For JSON
requests, digests are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Hash">
<summary>
A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 hash. This field is in binary
format. For JSON requests, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Url">
<summary>A URL.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata">
<summary>
The metadata associated with a specific threat entry. The client is expected to know the metadata key/value
pairs associated with each threat type.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.Entries">
<summary>The metadata entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry">
<summary>A single metadata entry.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Key">
<summary>The metadata entry key. For JSON requests, the key is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Value">
<summary>The metadata entry value. For JSON requests, the value is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet">
<summary>A set of threats that should be added or removed from a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.CompressionType">
<summary>The compression type for the entries in this set.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawHashes">
<summary>The raw SHA256-formatted entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawIndices">
<summary>The raw removal indices for a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceHashes">
<summary>
The encoded 4-byte prefixes of SHA256-formatted entries, using a Golomb-Rice encoding. The hashes are
converted to uint32, sorted in ascending order, then delta encoded and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceIndices">
<summary>
The encoded local, lexicographically-sorted list indices, using a Golomb-Rice encoding. Used for sending
compressed removal indices. The removal indices (uint32) are sorted in ascending order, then delta encoded
and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ClientInfo">
<summary>Client-reported identification.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Entry">
<summary>
The threat entry responsible for the hit. Full hash should be reported for hash-based hits.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.PlatformType">
<summary>The platform type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Resources">
<summary>The resources related to the threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ThreatType">
<summary>The threat type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.UserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource">
<summary>A single resource related to a threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Referrer">
<summary>Referrer of the resource. Only set if the referrer is available.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.RemoteIp">
<summary>The remote IP of the resource in ASCII format. Either IPv4 or IPv6.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Type">
<summary>The type of source reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Url">
<summary>The URL of the resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.RegionCode">
<summary>The UN M.49 region code associated with the user's location.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.UserId">
<summary>Unique user identifier defined by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo">
<summary>
The information regarding one or more threats that a client submits when checking for matches in threat lists.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.PlatformTypes">
<summary>The platform types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntries">
<summary>The threat entries to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntryTypes">
<summary>The entry types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatTypes">
<summary>The threat types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor">
<summary>
Describes an individual threat list. A list is defined by three parameters: the type of threat posed, the type
of platform targeted by the threat, and the type of entries in the list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.PlatformType">
<summary>The platform type targeted by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatEntryType">
<summary>The entry types contained in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatType">
<summary>The threat type posed by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch">
<summary>A match when checking a threat entry in the Safe Browsing threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.CacheDuration">
<summary>
The cache lifetime for the returned match. Clients must not cache this response for more than this duration
to avoid false positives.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.PlatformType">
<summary>The platform type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.Threat">
<summary>The threat matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryMetadata">
<summary>Optional metadata associated with this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryType">
<summary>The threat entry type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatType">
<summary>The threat type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ETag">
<summary>The ETag of the item.</summary>
</member>
</members>
</doc>

View file

@ -0,0 +1,886 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.Apis.Safebrowsing.v4</name>
</assembly>
<members>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingService">
<summary>The Safebrowsing Service.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.Version">
<summary>The API version.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.DiscoveryVersionUsed">
<summary>The discovery version used to generate this service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor">
<summary>Constructs a new service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor(Google.Apis.Services.BaseClientService.Initializer)">
<summary>Constructs a new service.</summary>
<param name="initializer">The service initializer.</param>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Features">
<summary>Gets the service supported features.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Name">
<summary>Gets the service name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BaseUri">
<summary>Gets the service base URI.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BasePath">
<summary>Gets the service base path.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchUri">
<summary>Gets the batch base URI; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchPath">
<summary>Gets the batch base path; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedFullHashes">
<summary>Gets the EncodedFullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedUpdates">
<summary>Gets the EncodedUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.FullHashes">
<summary>Gets the FullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatHits">
<summary>Gets the ThreatHits resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatListUpdates">
<summary>Gets the ThreatListUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatLists">
<summary>Gets the ThreatLists resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatMatches">
<summary>Gets the ThreatMatches resource.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1">
<summary>A base abstract class for Safebrowsing requests.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new SafebrowsingBaseServiceRequest instance.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Xgafv">
<summary>V1 error format.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum">
<summary>V1 error format.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value1">
<summary>v1 error format</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value2">
<summary>v2 error format</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AccessToken">
<summary>OAuth access token.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Alt">
<summary>Data format for response.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum">
<summary>Data format for response.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Json">
<summary>Responses with Content-Type of application/json</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Media">
<summary>Media download with context-dependent Content-Type</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Proto">
<summary>Responses with Content-Type of application/x-protobuf</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Callback">
<summary>JSONP</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Fields">
<summary>Selector specifying which fields to include in a partial response.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Key">
<summary>
API key. Your API key identifies your project and provides you with API access, quota, and reports. Required
unless you provide an OAuth 2.0 token.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.OauthToken">
<summary>OAuth 2.0 token for the current user.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.PrettyPrint">
<summary>Returns response with indentations and line breaks.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.QuotaUser">
<summary>
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a
user, but should not exceed 40 characters.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadType">
<summary>Legacy upload protocol for media (e.g. "media", "multipart").</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadProtocol">
<summary>Upload protocol for media (e.g. "raw", "multipart").</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.InitParameters">
<summary>Initializes Safebrowsing parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource">
<summary>The "encodedFullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FindFullHashesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.EncodedRequest">
<summary>A serialized FindFullHashesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource">
<summary>The "encodedUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FetchThreatListUpdatesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.EncodedRequest">
<summary>A serialized FetchThreatListUpdatesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientId">
<summary>
A client ID that uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource">
<summary>The "fullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.FullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource">
<summary>The "threatHits" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatHitsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.Create(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>Constructs a new Create request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.InitParameters">
<summary>Initializes Create parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource">
<summary>The "threatListUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.Fetch(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>Constructs a new Fetch request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.InitParameters">
<summary>Initializes Fetch parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource">
<summary>The "threatLists" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.List">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new List request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.InitParameters">
<summary>Initializes List parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource">
<summary>The "threatMatches" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty">
<summary>
A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical
example is to use it as the request or the response type of an API method. For instance: service Foo { rpc
Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum">
<summary>The expected state of a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.Sha256">
<summary>
The SHA256 hash of the client state; that is, of the sorted list of all hashes present in the database.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo">
<summary>The client metadata associated with Safe Browsing API requests.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest">
<summary>
Describes a Safe Browsing API update request. Clients can request updates for multiple lists in a single
request. The server may not respond to all requests, if the server has no updates for that list. NOTE: Field
index 2 is unused. NEXT: 5
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ListUpdateRequests">
<summary>The requested threat list updates.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest">
<summary>A single list update request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.Constraints">
<summary>The constraints associated with this request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.PlatformType">
<summary>The type of platform at risk by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.State">
<summary>
The current state of the client for the requested list (the encrypted client state that was received from
the last successful list update).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatEntryType">
<summary>The types of entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatType">
<summary>The type of threat posed by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints">
<summary>The constraints for this update.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.DeviceLocation">
<summary>A client's physical location, expressed as a ISO 31166-1 alpha-2 region code.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Language">
<summary>Requests the lists for a specific language. Expects ISO 639 alpha-2 format.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxDatabaseEntries">
<summary>
Sets the maximum number of entries that the client is willing to have in the local database for the
specified list. This should be a power of 2 between 2**10 and 2**20. If zero, no database size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxUpdateEntries">
<summary>
The maximum size in number of entries. The update will not contain more entries than this value. This should
be a power of 2 between 2**10 and 2**20. If zero, no update size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Region">
<summary>
Requests the list for a specific geographic location. If not set the server may pick that value based on the
user's IP address. Expects ISO 3166-1 alpha-2 format.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.SupportedCompressions">
<summary>The compression types supported by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ListUpdateResponses">
<summary>
The list updates requested by the clients. The number of responses here may be less than the number of
requests sent by clients. This is the case, for example, if the server has no updates for a particular list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any update request. If this field is not set
clients may update as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse">
<summary>An update to an individual list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Additions">
<summary>
A set of entries to add to a local threat type's list. Repeated to allow for a combination of compressed and
raw data to be sent in a single response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Checksum">
<summary>
The expected SHA256 hash of the client state; that is, of the sorted list of all hashes present in the
database after applying the provided update. If the client state doesn't match the expected state, the
client must disregard this update and retry later.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.NewClientState">
<summary>The new client state, in encrypted format. Opaque to clients.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.PlatformType">
<summary>The platform type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Removals">
<summary>
A set of entries to remove from a local threat type's list. In practice, this field is empty or contains
exactly one ThreatEntrySet.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ResponseType">
<summary>
The type of response. This may indicate that an action is required by the client when the response is
received.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatEntryType">
<summary>The format of the threats.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatType">
<summary>The threat type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest">
<summary>Request to return full hashes matched by the provided hash prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ApiClient">
<summary>
Client metadata associated with callers of higher-level APIs built on top of the client's implementation.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ClientStates">
<summary>The current client states for each of the client's local threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ThreatInfo">
<summary>The lists and hashes to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.Matches">
<summary>The full hashes that matched the requested prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any find hashes request. If this field is not set,
clients can issue a request as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.NegativeCacheDuration">
<summary>
For requested entities that did not match the threat list, how long to cache the response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest">
<summary>Request to check entries against lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ThreatInfo">
<summary>The lists and entries to be checked for matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.Matches">
<summary>The threat list matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ThreatLists">
<summary>The lists available for download by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes">
<summary>
The uncompressed threat entries in hash format of a particular prefix length. Hashes can be anywhere from 4 to
32 bytes in size. A large majority are 4 bytes, but some hashes are lengthened if they collide with the hash of
a popular URL. Used for sending ThreatEntrySet to clients that do not support compression, or when sending
non-4-byte hashes to clients that do support compression.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.PrefixSize">
<summary>
The number of bytes for each prefix encoded below. This field can be anywhere from 4 (shortest prefix) to 32
(full SHA256 hash).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.RawHashes">
<summary>
The hashes, in binary format, concatenated into one long string. Hashes are sorted in lexicographic order.
For JSON API users, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices">
<summary>A set of raw indices to remove from a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.Indices">
<summary>The indices to remove from a lexicographically-sorted local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding">
<summary>
The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or compressed removal indices.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.EncodedData">
<summary>The encoded deltas that are encoded using the Golomb-Rice coder.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.FirstValue">
<summary>
The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single
integer's value. If the field is empty or missing, assume zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.NumEntries">
<summary>
The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this
will be zero and the single value will be stored in `first_value`.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.RiceParameter">
<summary>
The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if
`num_entries` is zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry">
<summary>
An individual threat; for example, a malicious URL or its hash representation. Only one of these fields should
be set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Digest">
<summary>
The digest of an executable in SHA256 format. The API supports both binary and hex digests. For JSON
requests, digests are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Hash">
<summary>
A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 hash. This field is in binary
format. For JSON requests, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Url">
<summary>A URL.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata">
<summary>
The metadata associated with a specific threat entry. The client is expected to know the metadata key/value
pairs associated with each threat type.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.Entries">
<summary>The metadata entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry">
<summary>A single metadata entry.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Key">
<summary>The metadata entry key. For JSON requests, the key is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Value">
<summary>The metadata entry value. For JSON requests, the value is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet">
<summary>A set of threats that should be added or removed from a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.CompressionType">
<summary>The compression type for the entries in this set.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawHashes">
<summary>The raw SHA256-formatted entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawIndices">
<summary>The raw removal indices for a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceHashes">
<summary>
The encoded 4-byte prefixes of SHA256-formatted entries, using a Golomb-Rice encoding. The hashes are
converted to uint32, sorted in ascending order, then delta encoded and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceIndices">
<summary>
The encoded local, lexicographically-sorted list indices, using a Golomb-Rice encoding. Used for sending
compressed removal indices. The removal indices (uint32) are sorted in ascending order, then delta encoded
and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ClientInfo">
<summary>Client-reported identification.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Entry">
<summary>
The threat entry responsible for the hit. Full hash should be reported for hash-based hits.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.PlatformType">
<summary>The platform type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Resources">
<summary>The resources related to the threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ThreatType">
<summary>The threat type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.UserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource">
<summary>A single resource related to a threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Referrer">
<summary>Referrer of the resource. Only set if the referrer is available.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.RemoteIp">
<summary>The remote IP of the resource in ASCII format. Either IPv4 or IPv6.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Type">
<summary>The type of source reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Url">
<summary>The URL of the resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.RegionCode">
<summary>The UN M.49 region code associated with the user's location.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.UserId">
<summary>Unique user identifier defined by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo">
<summary>
The information regarding one or more threats that a client submits when checking for matches in threat lists.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.PlatformTypes">
<summary>The platform types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntries">
<summary>The threat entries to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntryTypes">
<summary>The entry types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatTypes">
<summary>The threat types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor">
<summary>
Describes an individual threat list. A list is defined by three parameters: the type of threat posed, the type
of platform targeted by the threat, and the type of entries in the list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.PlatformType">
<summary>The platform type targeted by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatEntryType">
<summary>The entry types contained in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatType">
<summary>The threat type posed by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch">
<summary>A match when checking a threat entry in the Safe Browsing threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.CacheDuration">
<summary>
The cache lifetime for the returned match. Clients must not cache this response for more than this duration
to avoid false positives.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.PlatformType">
<summary>The platform type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.Threat">
<summary>The threat matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryMetadata">
<summary>Optional metadata associated with this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryType">
<summary>The threat entry type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatType">
<summary>The threat type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ETag">
<summary>The ETag of the item.</summary>
</member>
</members>
</doc>

View file

@ -0,0 +1,886 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>Google.Apis.Safebrowsing.v4</name>
</assembly>
<members>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingService">
<summary>The Safebrowsing Service.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.Version">
<summary>The API version.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingService.DiscoveryVersionUsed">
<summary>The discovery version used to generate this service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor">
<summary>Constructs a new service.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingService.#ctor(Google.Apis.Services.BaseClientService.Initializer)">
<summary>Constructs a new service.</summary>
<param name="initializer">The service initializer.</param>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Features">
<summary>Gets the service supported features.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.Name">
<summary>Gets the service name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BaseUri">
<summary>Gets the service base URI.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BasePath">
<summary>Gets the service base path.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchUri">
<summary>Gets the batch base URI; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.BatchPath">
<summary>Gets the batch base path; <c>null</c> if unspecified.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedFullHashes">
<summary>Gets the EncodedFullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.EncodedUpdates">
<summary>Gets the EncodedUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.FullHashes">
<summary>Gets the FullHashes resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatHits">
<summary>Gets the ThreatHits resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatListUpdates">
<summary>Gets the ThreatListUpdates resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatLists">
<summary>Gets the ThreatLists resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingService.ThreatMatches">
<summary>Gets the ThreatMatches resource.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1">
<summary>A base abstract class for Safebrowsing requests.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new SafebrowsingBaseServiceRequest instance.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Xgafv">
<summary>V1 error format.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum">
<summary>V1 error format.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value1">
<summary>v1 error format</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.XgafvEnum.Value2">
<summary>v2 error format</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AccessToken">
<summary>OAuth access token.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Alt">
<summary>Data format for response.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum">
<summary>Data format for response.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Json">
<summary>Responses with Content-Type of application/json</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Media">
<summary>Media download with context-dependent Content-Type</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.AltEnum.Proto">
<summary>Responses with Content-Type of application/x-protobuf</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Callback">
<summary>JSONP</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Fields">
<summary>Selector specifying which fields to include in a partial response.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.Key">
<summary>
API key. Your API key identifies your project and provides you with API access, quota, and reports. Required
unless you provide an OAuth 2.0 token.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.OauthToken">
<summary>OAuth 2.0 token for the current user.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.PrettyPrint">
<summary>Returns response with indentations and line breaks.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.QuotaUser">
<summary>
Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a
user, but should not exceed 40 characters.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadType">
<summary>Legacy upload protocol for media (e.g. "media", "multipart").</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.UploadProtocol">
<summary>Upload protocol for media (e.g. "raw", "multipart").</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.SafebrowsingBaseServiceRequest`1.InitParameters">
<summary>Initializes Safebrowsing parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource">
<summary>The "encodedFullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FindFullHashesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.EncodedRequest">
<summary>A serialized FindFullHashesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedFullHashesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource">
<summary>The "encodedUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.Get(System.String)">
<summary></summary>
<param name="encodedRequest">A serialized FetchThreatListUpdatesRequest proto.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest">
<summary></summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.#ctor(Google.Apis.Services.IClientService,System.String)">
<summary>Constructs a new Get request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.EncodedRequest">
<summary>A serialized FetchThreatListUpdatesRequest proto.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientId">
<summary>
A client ID that uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.EncodedUpdatesResource.GetRequest.InitParameters">
<summary>Initializes Get parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource">
<summary>The "fullHashes" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.FullHashesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest">
<summary>Finds the full hashes that match the requested hash prefixes.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.FullHashesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource">
<summary>The "threatHits" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatHitsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.Create(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest">
<summary>
Reports a Safe Browsing threat list hit to Google. Only projects with TRUSTED_REPORTER visibility can use
this method.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit)">
<summary>Constructs a new Create request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatHitsResource.CreateRequest.InitParameters">
<summary>Initializes Create parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource">
<summary>The "threatListUpdates" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.Fetch(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest">
<summary>
Fetches the most recent threat list updates. A client can request updates for multiple lists at once.
</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest)">
<summary>Constructs a new Fetch request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListUpdatesResource.FetchRequest.InitParameters">
<summary>Initializes Fetch parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource">
<summary>The "threatLists" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatListsResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.List">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest">
<summary>Lists the Safe Browsing threat lists available for download.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new List request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatListsResource.ListRequest.InitParameters">
<summary>Initializes List parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource">
<summary>The "threatMatches" collection of methods.</summary>
</member>
<member name="F:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.service">
<summary>The service which this resource belongs to.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.#ctor(Google.Apis.Services.IClientService)">
<summary>Constructs a new resource.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.Find(Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
<param name="body">The body of the request.</param>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest">
<summary>Finds the threat entries that match the Safe Browsing lists.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.#ctor(Google.Apis.Services.IClientService,Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest)">
<summary>Constructs a new Find request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.Body">
<summary>Gets or sets the body of this request.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.GetBody">
<summary>Returns the body of the request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.MethodName">
<summary>Gets the method name.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.HttpMethod">
<summary>Gets the HTTP method.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.RestPath">
<summary>Gets the REST path.</summary>
</member>
<member name="M:Google.Apis.Safebrowsing.v4.ThreatMatchesResource.FindRequest.InitParameters">
<summary>Initializes Find parameter list.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty">
<summary>
A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical
example is to use it as the request or the response type of an API method. For instance: service Foo { rpc
Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleProtobufEmpty.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum">
<summary>The expected state of a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.Sha256">
<summary>
The SHA256 hash of the client state; that is, of the sorted list of all hashes present in the database.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4Checksum.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo">
<summary>The client metadata associated with Safe Browsing API requests.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientId">
<summary>
A client ID that (hopefully) uniquely identifies the client implementation of the Safe Browsing API.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ClientVersion">
<summary>The version of the client implementation.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ClientInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest">
<summary>
Describes a Safe Browsing API update request. Clients can request updates for multiple lists in a single
request. The server may not respond to all requests, if the server has no updates for that list. NOTE: Field
index 2 is unused. NEXT: 5
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ListUpdateRequests">
<summary>The requested threat list updates.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest">
<summary>A single list update request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.Constraints">
<summary>The constraints associated with this request.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.PlatformType">
<summary>The type of platform at risk by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.State">
<summary>
The current state of the client for the requested list (the encrypted client state that was received from
the last successful list update).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatEntryType">
<summary>The types of entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ThreatType">
<summary>The type of threat posed by entries present in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints">
<summary>The constraints for this update.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.DeviceLocation">
<summary>A client's physical location, expressed as a ISO 31166-1 alpha-2 region code.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Language">
<summary>Requests the lists for a specific language. Expects ISO 639 alpha-2 format.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxDatabaseEntries">
<summary>
Sets the maximum number of entries that the client is willing to have in the local database for the
specified list. This should be a power of 2 between 2**10 and 2**20. If zero, no database size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.MaxUpdateEntries">
<summary>
The maximum size in number of entries. The update will not contain more entries than this value. This should
be a power of 2 between 2**10 and 2**20. If zero, no update size limit is set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.Region">
<summary>
Requests the list for a specific geographic location. If not set the server may pick that value based on the
user's IP address. Expects ISO 3166-1 alpha-2 format.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.SupportedCompressions">
<summary>The compression types supported by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesRequestListUpdateRequestConstraints.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ListUpdateResponses">
<summary>
The list updates requested by the clients. The number of responses here may be less than the number of
requests sent by clients. This is the case, for example, if the server has no updates for a particular list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any update request. If this field is not set
clients may update as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse">
<summary>An update to an individual list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Additions">
<summary>
A set of entries to add to a local threat type's list. Repeated to allow for a combination of compressed and
raw data to be sent in a single response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Checksum">
<summary>
The expected SHA256 hash of the client state; that is, of the sorted list of all hashes present in the
database after applying the provided update. If the client state doesn't match the expected state, the
client must disregard this update and retry later.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.NewClientState">
<summary>The new client state, in encrypted format. Opaque to clients.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.PlatformType">
<summary>The platform type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.Removals">
<summary>
A set of entries to remove from a local threat type's list. In practice, this field is empty or contains
exactly one ThreatEntrySet.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ResponseType">
<summary>
The type of response. This may indicate that an action is required by the client when the response is
received.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatEntryType">
<summary>The format of the threats.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ThreatType">
<summary>The threat type for which data is returned.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FetchThreatListUpdatesResponseListUpdateResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest">
<summary>Request to return full hashes matched by the provided hash prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ApiClient">
<summary>
Client metadata associated with callers of higher-level APIs built on top of the client's implementation.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ClientStates">
<summary>The current client states for each of the client's local threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ThreatInfo">
<summary>The lists and hashes to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.Matches">
<summary>The full hashes that matched the requested prefixes.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.MinimumWaitDuration">
<summary>
The minimum duration the client must wait before issuing any find hashes request. If this field is not set,
clients can issue a request as soon as they want.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.NegativeCacheDuration">
<summary>
For requested entities that did not match the threat list, how long to cache the response.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindFullHashesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest">
<summary>Request to check entries against lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.Client">
<summary>The client metadata.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ThreatInfo">
<summary>The lists and entries to be checked for matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesRequest.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.Matches">
<summary>The threat list matches.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4FindThreatMatchesResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ThreatLists">
<summary>The lists available for download by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ListThreatListsResponse.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes">
<summary>
The uncompressed threat entries in hash format of a particular prefix length. Hashes can be anywhere from 4 to
32 bytes in size. A large majority are 4 bytes, but some hashes are lengthened if they collide with the hash of
a popular URL. Used for sending ThreatEntrySet to clients that do not support compression, or when sending
non-4-byte hashes to clients that do support compression.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.PrefixSize">
<summary>
The number of bytes for each prefix encoded below. This field can be anywhere from 4 (shortest prefix) to 32
(full SHA256 hash).
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.RawHashes">
<summary>
The hashes, in binary format, concatenated into one long string. Hashes are sorted in lexicographic order.
For JSON API users, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawHashes.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices">
<summary>A set of raw indices to remove from a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.Indices">
<summary>The indices to remove from a lexicographically-sorted local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RawIndices.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding">
<summary>
The Rice-Golomb encoded data. Used for sending compressed 4-byte hashes or compressed removal indices.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.EncodedData">
<summary>The encoded deltas that are encoded using the Golomb-Rice coder.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.FirstValue">
<summary>
The offset of the first entry in the encoded data, or, if only a single integer was encoded, that single
integer's value. If the field is empty or missing, assume zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.NumEntries">
<summary>
The number of entries that are delta encoded in the encoded data. If only a single integer was encoded, this
will be zero and the single value will be stored in `first_value`.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.RiceParameter">
<summary>
The Golomb-Rice parameter, which is a number between 2 and 28. This field is missing (that is, zero) if
`num_entries` is zero.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4RiceDeltaEncoding.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry">
<summary>
An individual threat; for example, a malicious URL or its hash representation. Only one of these fields should
be set.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Digest">
<summary>
The digest of an executable in SHA256 format. The API supports both binary and hex digests. For JSON
requests, digests are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Hash">
<summary>
A hash prefix, consisting of the most significant 4-32 bytes of a SHA256 hash. This field is in binary
format. For JSON requests, hashes are base64-encoded.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.Url">
<summary>A URL.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata">
<summary>
The metadata associated with a specific threat entry. The client is expected to know the metadata key/value
pairs associated with each threat type.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.Entries">
<summary>The metadata entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadata.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry">
<summary>A single metadata entry.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Key">
<summary>The metadata entry key. For JSON requests, the key is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.Value">
<summary>The metadata entry value. For JSON requests, the value is base64-encoded.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntryMetadataMetadataEntry.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet">
<summary>A set of threats that should be added or removed from a client's local database.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.CompressionType">
<summary>The compression type for the entries in this set.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawHashes">
<summary>The raw SHA256-formatted entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RawIndices">
<summary>The raw removal indices for a local list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceHashes">
<summary>
The encoded 4-byte prefixes of SHA256-formatted entries, using a Golomb-Rice encoding. The hashes are
converted to uint32, sorted in ascending order, then delta encoded and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.RiceIndices">
<summary>
The encoded local, lexicographically-sorted list indices, using a Golomb-Rice encoding. Used for sending
compressed removal indices. The removal indices (uint32) are sorted in ascending order, then delta encoded
and stored as encoded_data.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatEntrySet.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ClientInfo">
<summary>Client-reported identification.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Entry">
<summary>
The threat entry responsible for the hit. Full hash should be reported for hash-based hits.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.PlatformType">
<summary>The platform type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.Resources">
<summary>The resources related to the threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ThreatType">
<summary>The threat type reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.UserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHit.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource">
<summary>A single resource related to a threat hit.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Referrer">
<summary>Referrer of the resource. Only set if the referrer is available.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.RemoteIp">
<summary>The remote IP of the resource in ASCII format. Either IPv4 or IPv6.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Type">
<summary>The type of source reported.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.Url">
<summary>The URL of the resource.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitThreatSource.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo">
<summary>Details about the user that encountered the threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.RegionCode">
<summary>The UN M.49 region code associated with the user's location.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.UserId">
<summary>Unique user identifier defined by the client.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatHitUserInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo">
<summary>
The information regarding one or more threats that a client submits when checking for matches in threat lists.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.PlatformTypes">
<summary>The platform types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntries">
<summary>The threat entries to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatEntryTypes">
<summary>The entry types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ThreatTypes">
<summary>The threat types to be checked.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatInfo.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor">
<summary>
Describes an individual threat list. A list is defined by three parameters: the type of threat posed, the type
of platform targeted by the threat, and the type of entries in the list.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.PlatformType">
<summary>The platform type targeted by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatEntryType">
<summary>The entry types contained in the list.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ThreatType">
<summary>The threat type posed by the list's entries.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatListDescriptor.ETag">
<summary>The ETag of the item.</summary>
</member>
<member name="T:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch">
<summary>A match when checking a threat entry in the Safe Browsing threat lists.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.CacheDuration">
<summary>
The cache lifetime for the returned match. Clients must not cache this response for more than this duration
to avoid false positives.
</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.PlatformType">
<summary>The platform type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.Threat">
<summary>The threat matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryMetadata">
<summary>Optional metadata associated with this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatEntryType">
<summary>The threat entry type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ThreatType">
<summary>The threat type matching this threat.</summary>
</member>
<member name="P:Google.Apis.Safebrowsing.v4.Data.GoogleSecuritySafebrowsingV4ThreatMatch.ETag">
<summary>The ETag of the item.</summary>
</member>
</members>
</doc>

Binary file not shown.

View file

@ -0,0 +1,20 @@
The MIT License (MIT)
Copyright (c) 2007 James Newton-King
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Binary file not shown.

View file

@ -0,0 +1,71 @@
# ![Logo](https://raw.githubusercontent.com/JamesNK/Newtonsoft.Json/master/Doc/icons/logo.jpg) Json.NET
[![NuGet version (Newtonsoft.Json)](https://img.shields.io/nuget/v/Newtonsoft.Json.svg?style=flat-square)](https://www.nuget.org/packages/Newtonsoft.Json/)
[![Build status](https://dev.azure.com/jamesnk/Public/_apis/build/status/JamesNK.Newtonsoft.Json?branchName=master)](https://dev.azure.com/jamesnk/Public/_build/latest?definitionId=8)
Json.NET is a popular high-performance JSON framework for .NET
## Serialize JSON
```csharp
Product product = new Product();
product.Name = "Apple";
product.Expiry = new DateTime(2008, 12, 28);
product.Sizes = new string[] { "Small" };
string json = JsonConvert.SerializeObject(product);
// {
// "Name": "Apple",
// "Expiry": "2008-12-28T00:00:00",
// "Sizes": [
// "Small"
// ]
// }
```
## Deserialize JSON
```csharp
string json = @"{
'Name': 'Bad Boys',
'ReleaseDate': '1995-4-7T00:00:00',
'Genres': [
'Action',
'Comedy'
]
}";
Movie m = JsonConvert.DeserializeObject<Movie>(json);
string name = m.Name;
// Bad Boys
```
## LINQ to JSON
```csharp
JArray array = new JArray();
array.Add("Manual text");
array.Add(new DateTime(2000, 5, 23));
JObject o = new JObject();
o["MyArray"] = array;
string json = o.ToString();
// {
// "MyArray": [
// "Manual text",
// "2000-05-23T00:00:00"
// ]
// }
```
## Links
- [Homepage](https://www.newtonsoft.com/json)
- [Documentation](https://www.newtonsoft.com/json/help)
- [NuGet Package](https://www.nuget.org/packages/Newtonsoft.Json)
- [Release Notes](https://github.com/JamesNK/Newtonsoft.Json/releases)
- [Contributing Guidelines](https://github.com/JamesNK/Newtonsoft.Json/blob/master/CONTRIBUTING.md)
- [License](https://github.com/JamesNK/Newtonsoft.Json/blob/master/LICENSE.md)
- [Stack Overflow](https://stackoverflow.com/questions/tagged/json.net)

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.7 KiB