public static bool TryParse()

in blueprints/dotnet/src/APIGatewayAuthorizerHandler/Model/ApiGatewayArn.cs [48:60]


        public static bool TryParse(string value, out ApiGatewayArn methodArn)
        {
            try
            {
                methodArn = Parse(value);
                return true;
            }
            catch
            {
                methodArn = null;
                return false;
            }
        }