Dialogflow v3 API - Class PageName (2.13.0)

public sealed class PageName : IResourceName, IEquatable<PageName>

Reference documentation and code samples for the Dialogflow v3 API class PageName.

Resource name for the Page resource.

Inheritance

object > PageName

Namespace

Google.Cloud.Dialogflow.Cx.V3

Assembly

Google.Cloud.Dialogflow.Cx.V3.dll

Constructors

PageName(string, string, string, string, string)

public PageName(string projectId, string locationId, string agentId, string flowId, string pageId)

Constructs a new instance of a PageName class from the component parts of pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}

Parameters
NameDescription
projectIdstring

The Project ID. Must not be null or empty.

locationIdstring

The Location ID. Must not be null or empty.

agentIdstring

The Agent ID. Must not be null or empty.

flowIdstring

The Flow ID. Must not be null or empty.

pageIdstring

The Page ID. Must not be null or empty.

Properties

AgentId

public string AgentId { get; }

The Agent ID. Will not be null, unless this instance contains an unparsed resource name.

Property Value
TypeDescription
string

FlowId

public string FlowId { get; }

The Flow ID. Will not be null, unless this instance contains an unparsed resource name.

Property Value
TypeDescription
string

IsKnownPattern

public bool IsKnownPattern { get; }

Whether this instance contains a resource name with a known pattern.

Property Value
TypeDescription
bool

LocationId

public string LocationId { get; }

The Location ID. Will not be null, unless this instance contains an unparsed resource name.

Property Value
TypeDescription
string

PageId

public string PageId { get; }

The Page ID. Will not be null, unless this instance contains an unparsed resource name.

Property Value
TypeDescription
string

ProjectId

public string ProjectId { get; }

The Project ID. Will not be null, unless this instance contains an unparsed resource name.

Property Value
TypeDescription
string

Type

public PageName.ResourceNameType Type { get; }

The PageName.ResourceNameType of the contained resource name.

Property Value
TypeDescription
PageNameResourceNameType

UnparsedResource

public UnparsedResourceName UnparsedResource { get; }

The contained UnparsedResourceName. Only non-null if this instance contains an unparsed resource name.

Property Value
TypeDescription
UnparsedResourceName

Methods

Format(string, string, string, string, string)

public static string Format(string projectId, string locationId, string agentId, string flowId, string pageId)

Formats the IDs into the string representation of this PageName with pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}.

Parameters
NameDescription
projectIdstring

The Project ID. Must not be null or empty.

locationIdstring

The Location ID. Must not be null or empty.

agentIdstring

The Agent ID. Must not be null or empty.

flowIdstring

The Flow ID. Must not be null or empty.

pageIdstring

The Page ID. Must not be null or empty.

Returns
TypeDescription
string

The string representation of this PageName with pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}.

FormatProjectLocationAgentFlowPage(string, string, string, string, string)

public static string FormatProjectLocationAgentFlowPage(string projectId, string locationId, string agentId, string flowId, string pageId)

Formats the IDs into the string representation of this PageName with pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}.

Parameters
NameDescription
projectIdstring

The Project ID. Must not be null or empty.

locationIdstring

The Location ID. Must not be null or empty.

agentIdstring

The Agent ID. Must not be null or empty.

flowIdstring

The Flow ID. Must not be null or empty.

pageIdstring

The Page ID. Must not be null or empty.

Returns
TypeDescription
string

The string representation of this PageName with pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}.

FromProjectLocationAgentFlowPage(string, string, string, string, string)

public static PageName FromProjectLocationAgentFlowPage(string projectId, string locationId, string agentId, string flowId, string pageId)

Creates a PageName with the pattern projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}.

Parameters
NameDescription
projectIdstring

The Project ID. Must not be null or empty.

locationIdstring

The Location ID. Must not be null or empty.

agentIdstring

The Agent ID. Must not be null or empty.

flowIdstring

The Flow ID. Must not be null or empty.

pageIdstring

The Page ID. Must not be null or empty.

Returns
TypeDescription
PageName

A new instance of PageName constructed from the provided ids.

FromUnparsed(UnparsedResourceName)

public static PageName FromUnparsed(UnparsedResourceName unparsedResourceName)

Creates a PageName containing an unparsed resource name.

Parameter
NameDescription
unparsedResourceNameUnparsedResourceName

The unparsed resource name. Must not be null.

Returns
TypeDescription
PageName

A new instance of PageName containing the provided unparsedResourceName.

GetHashCode()

public override int GetHashCode()

Returns a hash code for this resource name.

Returns
TypeDescription
int
Overrides

Parse(string)

public static PageName Parse(string pageName)

Parses the given resource name string into a new PageName instance.

Parameter
NameDescription
pageNamestring

The resource name in string form. Must not be null.

Returns
TypeDescription
PageName

The parsed PageName if successful.

Remarks

To parse successfully, the resource name must be formatted as one of the following:

  • projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}

Parse(string, bool)

public static PageName Parse(string pageName, bool allowUnparsed)

Parses the given resource name string into a new PageName instance; optionally allowing an unparseable resource name.

Parameters
NameDescription
pageNamestring

The resource name in string form. Must not be null.

allowUnparsedbool

If true will successfully store an unparseable resource name into the UnparsedResource property; otherwise will throw an ArgumentException if an unparseable resource name is specified.

Returns
TypeDescription
PageName

The parsed PageName if successful.

Remarks

To parse successfully, the resource name must be formatted as one of the following:

  • projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}
Or may be in any format if allowUnparsed is true.

ToString()

public override string ToString()

The string representation of the resource name.

Returns
TypeDescription
string

The string representation of the resource name.

Overrides

TryParse(string, out PageName)

public static bool TryParse(string pageName, out PageName result)

Tries to parse the given resource name string into a new PageName instance.

Parameters
NameDescription
pageNamestring

The resource name in string form. Must not be null.

resultPageName

When this method returns, the parsed PageName, or null if parsing failed.

Returns
TypeDescription
bool

true if the name was parsed successfully; false otherwise.

Remarks

To parse successfully, the resource name must be formatted as one of the following:

  • projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}

TryParse(string, bool, out PageName)

public static bool TryParse(string pageName, bool allowUnparsed, out PageName result)

Tries to parse the given resource name string into a new PageName instance; optionally allowing an unparseable resource name.

Parameters
NameDescription
pageNamestring

The resource name in string form. Must not be null.

allowUnparsedbool

If true will successfully store an unparseable resource name into the UnparsedResource property; otherwise will throw an ArgumentException if an unparseable resource name is specified.

resultPageName

When this method returns, the parsed PageName, or null if parsing failed.

Returns
TypeDescription
bool

true if the name was parsed successfully; false otherwise.

Remarks

To parse successfully, the resource name must be formatted as one of the following:

  • projects/{project}/locations/{location}/agents/{agent}/flows/{flow}/pages/{page}
Or may be in any format if allowUnparsed is true.

Operators

operator ==(PageName, PageName)

public static bool operator ==(PageName a, PageName b)
Parameters
NameDescription
aPageName
bPageName
Returns
TypeDescription
bool

operator !=(PageName, PageName)

public static bool operator !=(PageName a, PageName b)
Parameters
NameDescription
aPageName
bPageName
Returns
TypeDescription
bool