Creates an unkown resource name from the given resource name string.
Only minimal verification is carried out that name is a value resource name string.
public static bool TryParse(string name, out UnparsedResourceName result)
Tries to parse the given resource name into an UnparsedResourceName.
Only minimal verification is carried out that name is a value resource name string.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-04-17 UTC."],[[["This document details the `UnparsedResourceName` class within the `Google.Api.Gax` namespace, which represents a resource name where the structure is unknown."],["The `UnparsedResourceName` class is sealed, implementing both `IResourceName` and `IEquatable\u003cUnparsedResourceName\u003e`, and is inherited from the base `object` class."],["You can create an `UnparsedResourceName` object from a string using the constructor `UnparsedResourceName(string name)` or through the static `Parse(string name)` and `TryParse(string name, out UnparsedResourceName result)` methods, with minimal validation of the provided resource name."],["The class offers methods like `Equals`, `GetHashCode`, and `ToString` to aid in comparison and string representation, along with operator overloads for equality and inequality checks between `UnparsedResourceName` instances."],["It provides the property `IsKnownPattern` that indicates whether the instance contains a resource name with a known pattern, useful for determining the resource name's structure."]]],[]]