templated type safe version of Insert
Namespace:
Google.GData.Client
Assembly:
Google.GData.Client (in Google.GData.Client.dll)
Version: 1.4.0.2
Syntax
| C# |
|---|
public TEntry Insert<TEntry>(
AtomFeed feed,
TEntry entry
) where TEntry : AtomEntry |
| Visual Basic (Declaration) |
|---|
Public Function Insert(Of TEntry As AtomEntry) ( _
feed As AtomFeed, _
entry As TEntry _
) As TEntry |
| Visual C++ |
|---|
public:
generic<typename TEntry>
where TEntry : AtomEntry
TEntry Insert(
AtomFeed^ feed,
TEntry entry
) |
Type Parameters
Return Value
the new Entry, as returned from the server
See Also