uses the set service to insert a new entry.

Namespace:  Google.GData.Client
Assembly:  Google.GData.Client (in Google.GData.Client.dll)
Version: 1.4.0.2

Syntax

C#
public TEntry Insert<TEntry>(

	TEntry newEntry

) where TEntry : AtomEntry
Visual Basic (Declaration)
Public Function Insert(Of TEntry As AtomEntry) ( _

	newEntry As TEntry _

) As TEntry
Visual C++
public:

generic<typename TEntry>

where TEntry : AtomEntry

TEntry Insert(

	TEntry newEntry

)

Parameters

newEntry
Type: TEntry
the atomEntry to insert into the feed

Type Parameters

TEntry

Return Value

the entry as echoed back from the server. The entry is NOT added to the feeds collection

See Also