コード例 #1
0
 public bool TryFind(System.Utf8String value, System.StringComparison comparisonType, out System.Range range)
 {
     throw null;
 }
コード例 #2
0
 public SplitOnResult SplitOnLast(System.Utf8String separator, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #3
0
 public bool StartsWith(System.Text.Rune value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #4
0
 public bool Equals(System.Utf8String?value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #5
0
 public SplitOnResult SplitOn(char separator, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #6
0
 public bool Contains(char value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #7
0
 public bool Contains(System.Utf8String value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #8
0
 public MatcherContext(System.Collections.Generic.IEnumerable <Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern> includePatterns, System.Collections.Generic.IEnumerable <Microsoft.Extensions.FileSystemGlobbing.Internal.IPattern> excludePatterns, Microsoft.Extensions.FileSystemGlobbing.Abstractions.DirectoryInfoBase directoryInfo, System.StringComparison comparison)
 {
 }
コード例 #9
0
 public LiteralPathSegment(string value, System.StringComparison comparisonType)
 {
 }
コード例 #10
0
 public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType, out Microsoft.AspNetCore.Http.PathString matched, out Microsoft.AspNetCore.Http.PathString remaining)
 {
     throw null;
 }
コード例 #11
0
 /// <summary>
 /// Compares two strings, set ignoreCase to true to ignore case comparison ('A' == 'a')
 /// </summary>
 public static bool CaseInsensitiveContains(this string text, string value,
                                            System.StringComparison stringComparison = System.StringComparison.CurrentCultureIgnoreCase)
 {
     return(text.IndexOf(value, stringComparison) >= 0);
 }
コード例 #12
0
 public bool StartsWithSegments(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #13
0
 public bool Equals(Microsoft.AspNetCore.Http.PathString other, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #14
0
ファイル: System.Memory.cs プロジェクト: zhangzhenling/corefx
 public static bool StartsWith(this System.ReadOnlySpan <char> span, System.ReadOnlySpan <char> value, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #15
0
 public IsInList(string[] matches, System.StringComparison compareOption)
 {
     this.m_Matches = matches;
     this.m_CompareOption = compareOption;
 }
コード例 #16
0
 public WildcardPathSegment(string beginsWith, System.Collections.Generic.List <string> contains, string endsWith, System.StringComparison comparisonType)
 {
 }
コード例 #17
0
 public int CompareTo(System.Utf8String?other, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #18
0
 public PatternBuilder(System.StringComparison comparisonType)
 {
 }
コード例 #19
0
 public bool Contains(System.Text.Rune value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #20
0
 public Matcher(System.StringComparison comparisonType)
 {
 }
コード例 #21
0
 public static bool Equals(System.Utf8String?a, System.Utf8String?b, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #22
0
 public int CompareTo(System.Text.Utf8Span other, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #23
0
 public int GetHashCode(System.StringComparison comparison)
 {
     throw null;
 }
コード例 #24
0
 public bool EndsWith(System.Text.Utf8Span value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #25
0
 public SplitOnResult SplitOn(System.Text.Rune separator, System.StringComparison comparisonType)
 {
     throw null;
 }
コード例 #26
0
 public bool Equals(System.Text.Utf8Span other, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #27
0
 public bool StartsWith(char value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #28
0
 public static bool Equals(System.Text.Utf8Span left, System.Text.Utf8Span right, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #29
0
 public bool StartsWith(System.Utf8String value, System.StringComparison comparison)
 {
     throw null;
 }
コード例 #30
0
 public bool TryFindLast(System.Text.Utf8Span value, System.StringComparison comparisonType, out System.Range range)
 {
     throw null;
 }
コード例 #31
0
 public bool TryFindLast(char value, System.StringComparison comparisonType, out System.Range range)
 {
     throw null;
 }
コード例 #32
0
 public Equal(string input, System.StringComparison compareOption)
 {
     this.m_Word = input;
     this.m_CompareOption = compareOption;
 }