Show / Hide Table of Contents

Class ListWebDataStreamsResponse

Request message for ListWebDataStreams RPC.

Inheritance
System.Object
ListWebDataStreamsResponse
Implements
Google.Protobuf.IMessage<ListWebDataStreamsResponse>
System.IEquatable<ListWebDataStreamsResponse>
Google.Protobuf.IDeepCloneable<ListWebDataStreamsResponse>
Google.Protobuf.IBufferMessage
Google.Protobuf.IMessage
Google.Api.Gax.Grpc.IPageResponse<WebDataStream>
System.Collections.Generic.IEnumerable<WebDataStream>
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 ListWebDataStreamsResponse : IMessage<ListWebDataStreamsResponse>, IEquatable<ListWebDataStreamsResponse>, IDeepCloneable<ListWebDataStreamsResponse>, IBufferMessage, IMessage, IPageResponse<WebDataStream>, IEnumerable<WebDataStream>, IEnumerable

Constructors

ListWebDataStreamsResponse()

Declaration
public ListWebDataStreamsResponse()

ListWebDataStreamsResponse(ListWebDataStreamsResponse)

Declaration
public ListWebDataStreamsResponse(ListWebDataStreamsResponse other)
Parameters
Type Name Description
ListWebDataStreamsResponse 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

WebDataStreams

Results that matched the filter criteria and were accessible to the caller.

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

Methods

GetEnumerator()

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

Declaration
public IEnumerator<WebDataStream> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<WebDataStream>
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