ModelGenericExtensionsGetParameterSectionsInTemplate Method

[Missing <summary> documentation for "M:MobileTrack.Common.Extensions.ModelGenericExtensions.GetParameterSectionsInTemplate"]

Definition

Namespace: MobileTrack.Common.Extensions
Assembly: MobileTrack.Common (in MobileTrack.Common.dll) Version: 0.7+ce90b2cf6b782b8d7b7fd47b3c546987c652c00f
[GeneratedRegexAttribute("({{[A-Za-z0-9_\.]*}})", RegexOptions.IgnoreCase|RegexOptions.Compiled|RegexOptions.CultureInvariant, 
	1000)]
public static Regex GetParameterSectionsInTemplate()

Return Value

Regex

[Missing <returns> documentation for "M:MobileTrack.Common.Extensions.ModelGenericExtensions.GetParameterSectionsInTemplate"]

Remarks

Pattern:
C#
({{[A-Za-z0-9_\\.]*}})

Options:
C#
RegexOptions.IgnoreCase | RegexOptions.Compiled | RegexOptions.CultureInvariant

Explanation:
C#
○ 1st capture group.
○ Match the string "{{".
○ Match a character in the set [.0-9A-Z_a-z\u212A] atomically any number of times.
○ Match the string "}}".

See Also