资源简介
for .net 的google API simples
代码片段和文件信息
/* Copyright (c) 2006 Google Inc.
*
* Licensed under the Apache License Version 2.0 (the “License“);
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing software
* distributed under the License is distributed on an “AS IS“ BASIS
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#region Using directives
#define USE_TRACING
using System;
using System.xml;
using System.Net;
using System.Collections;
#endregion
//////////////////////////////////////////////////////////////////////
// Contains AtomEntry an object to represent the atom:entry
// element.
//////////////////////////////////////////////////////////////////////
namespace Google.GData.Client
{
///
/// Entry API customization class for defining entries in a custom feed
///
public abstract class AbstractEntry : AtomEntry
{
///
/// base implementation as with the abstract feed we are adding
/// the gnamespace
///
/// The xmlWrite where we want to add default namespaces to
protected override void AddOtherNamespaces(xmlWriter writer)
{
base.AddOtherNamespaces(writer);
Utilities.EnsureGDataNamespace(writer);
}
///
/// Checks if this is a namespace declaration that we already added
///
/// xmlNode to check
/// True if this node should be skipped
protected override bool SkipNode(xmlNode node)
{
if (base.SkipNode(node))
{
return true;
}
if (node.NodeType == xmlNodeType.Attribute &&
(node.Name.StartsWith(“xmlns“) == true) &&
(String.Compare(node.ValuebaseNametable.gNamespace)==0))
return true;
return false;
}
///
/// Parses the inner state of the element
///
/// The extension element that should be added to this entry
/// The AtomFeedParser that called this
public virtual void Parse(ExtensionElementEventArgs e AtomFeedParser parser)
{
if (e == null)
{
throw new ArgumentNullException(“e“);
}
Tracing.TraceMsg(“Entering Parse on AbstractEntry“);
xmlNode node = e.ExtensionElement;
if (this.ExtensionFactories != null && this.Exten
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 112 2007-06-28 14:44 Google Data APIs Homepage.url
文件 4516910 2008-04-23 20:49 Documentation\Google.GData.Documentation.chm
文件 1613 2007-08-09 01:48 Documentation\gzip-mono-howto.txt
文件 32402 2008-04-23 20:49 Documentation\RELEASE_NOTES.HTML
文件 23558 2008-02-28 19:50 Icons\app.ico
文件 29926 2008-02-28 19:50 Icons\help.ico
文件 25214 2008-02-28 19:50 Icons\rc_html.ico
目录 0 2008-04-23 20:58 Redist\ASP.NET\
文件 24576 2008-04-03 18:05 Redist\ASP.NET\Google.GData.AccessControl.dll
文件 36864 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Apps.dll
文件 36864 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Calendar.dll
文件 122880 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Client.dll
文件 24576 2008-04-03 18:05 Redist\ASP.NET\Google.GData.CodeSearch.dll
文件 20480 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Contacts.dll
文件 24576 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Documents.dll
文件 65536 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Extensions.dll
文件 57344 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Googleba
文件 36864 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Photos.dll
文件 36864 2008-04-03 18:05 Redist\ASP.NET\Google.GData.Spreadsheets.dll
文件 736 2007-05-23 15:36 Redist\ASP.NET\README.TXT
文件 20480 2008-04-23 20:49 Redist\Google.GData.AccessControl.dll
文件 36864 2008-04-23 20:49 Redist\Google.GData.Apps.dll
文件 36864 2008-04-23 20:49 Redist\Google.GData.Calendar.dll
文件 126976 2008-04-23 20:49 Redist\Google.GData.Client.dll
文件 24576 2008-04-23 20:49 Redist\Google.GData.CodeSearch.dll
文件 24576 2008-04-23 20:49 Redist\Google.GData.Contacts.dll
文件 24576 2008-04-23 20:49 Redist\Google.GData.Documents.dll
文件 69632 2008-04-23 20:49 Redist\Google.GData.Extensions.dll
文件 57344 2008-04-23 20:49 Redist\Google.GData.Googleba
文件 36864 2008-04-23 20:49 Redist\Google.GData.Photos.dll
文件 36864 2008-04-23 20:49 Redist\Google.GData.Spreadsheets.dll
............此处省略436个文件信息
相关资源
- google云计算体系架构详解
- GTalk英文版,可以进行文件传输
- 离线google地图API含sample+瓦片资源
- Google API教程第一章—第5章
- how google works
- Google零信任安全架构.rar
- 卫星航拍图像
- Google零信任论文6篇.rar
- google breakPad
- 免费GOOGLE瓦片器.zip
- GOOGLEAPI开发详解-Googleearth代码
- .net Google地图定位系统源码
- 谷歌地图所有的demo
- Google Earth API开发
- google-play-services_lib
- Google_Books_Download_3.0.1.308.zip
- Google-GFSBigtableMapreduce三大论文英文原
- 如何使用CiteSpace+Google Earth进行文献的
- TensorFlow实战Google深度学习框架.pdf
- Google大数据三大论文 三合一 中文版
- google protobuf 中文翻译
- Google Hack V2.0汉化版
- PlayCamera[基础Google自带算法Camera实时检
- Google API开发详解源代码Google earth sa
- Google-Analytics常用指标及解读
- google地址解析
- Excel转GoogleEarth插件
- google的dapper-2010-1论文
- 最新的 libprotobuf.lib、libprotoc.lib和pr
- Google Map 遥感影像工具
评论
共有 条评论