Show / Hide Table of Contents

Class ListUserLinksResponse

Response message for ListUserLinks RPC.

Inheritance
System.Object
ListUserLinksResponse
Implements
Google.Protobuf.IMessage<ListUserLinksResponse>
System.IEquatable<ListUserLinksResponse>
Google.Protobuf.IDeepCloneable<ListUserLinksResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageResponse<UserLink>
System.Collections.Generic.IEnumerable<UserLink>
System.Collections.IEnumerable
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Analytics.Admin.V1Alpha
Assembly: Google.Analytics.Admin.V1Alpha.dll
Syntax
public sealed class ListUserLinksResponse : IMessage<ListUserLinksResponse>, IEquatable<ListUserLinksResponse>, IDeepCloneable<ListUserLinksResponse>, IBufferMessage, IMessage, IPageResponse<UserLink>, IEnumerable<UserLink>, IEnumerable

Constructors

ListUserLinksResponse()

Declaration
public ListUserLinksResponse()

ListUserLinksResponse(ListUserLinksResponse)

Declaration
public ListUserLinksResponse(ListUserLinksResponse other)
Parameters
Type Name Description
ListUserLinksResponse other

Properties

NextPageToken

A token, which can be sent as page_token to retrieve the next page. If this field is omitted, there are no subsequent pages.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
System.String
Implements
Google.Api.Gax.Grpc.IPageResponse<TResource>.NextPageToken

UserLinks

List of UserLinks. These will be ordered stably, but in an arbitrary order.

Declaration
public RepeatedField<UserLink> UserLinks { get; }
Property Value
Type Description
Google.Protobuf.Collections.RepeatedField<UserLink>

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<UserLink> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<UserLink>
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator
Implements
System.Collections.IEnumerable.GetEnumerator()
Back to top