templated type safe verion of the interface

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

Syntax

C#
public TEntry Insert<TEntry>(

	Uri feedUri,

	TEntry entry

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

	feedUri As Uri, _

	entry As TEntry _

) As TEntry
Visual C++
public:

generic<typename TEntry>

where TEntry : AtomEntry

TEntry Insert(

	Uri^ feedUri, 

	TEntry entry

)

Parameters

feedUri
Type: System..::.Uri
entry
Type: TEntry
the old entry to update

Type Parameters

TEntry

Return Value

the new Entry, as returned from the server

See Also