Show / Hide Table of Contents

Class ListMeasurementProtocolSecretsResponse

Response message for ListMeasurementProtocolSecret RPC

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

Constructors

ListMeasurementProtocolSecretsResponse()

Declaration
public ListMeasurementProtocolSecretsResponse()

ListMeasurementProtocolSecretsResponse(ListMeasurementProtocolSecretsResponse)

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

Properties

MeasurementProtocolSecrets

A list of secrets for the parent stream specified in the request.

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

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

Methods

GetEnumerator()

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

Declaration
public IEnumerator<MeasurementProtocolSecret> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<MeasurementProtocolSecret>
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()
In This Article
Back to top