7 references to guidLength
dotnet-svcutil-lib (7)
FrameworkFork\System.Runtime.Serialization\System\Xml\UniqueId.cs (7)
92
if (
guidLength
> guid.Length - offset)
93
throw /*System.Runtime.Serialization.*/DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentException(string.Format(SRSerialization.XmlArrayTooSmallInput,
guidLength
), "guid"));
220
byte* bytes = stackalloc byte[
guidLength
];
286
byte* bytes = stackalloc byte[
guidLength
];
335
byte[] buffer = new byte[
guidLength
];
364
if (
guidLength
> buffer.Length - offset)
365
throw /*System.Runtime.Serialization.*/DiagnosticUtility.ExceptionUtility.ThrowHelperError(new ArgumentOutOfRangeException("buffer", string.Format(SRSerialization.XmlArrayTooSmallOutput,
guidLength
)));