Base:
method
GetString
System.Text.Encoding.GetString(System.Byte[], System.Int32, System.Int32)
11 references to GetString
PresentationCore (1)
Core\CSharp\System\Windows\DataObject.cs (1)
3616stringData = utf8Encoding.GetString(bytes, 0, utf8ByteCount);
System.AddIn (1)
System\Addin\MiniReflection\TypeInfo.cs (1)
1046String result = s_encoder.GetString(bytes, (int)b, (int)len);
System.IdentityModel (2)
System\IdentityModel\Tokens\WSSecurityJan2004.cs (2)
399writer.WriteString(new UTF8Encoding().GetString(keyIdentifier, 0, keyIdentifier.Length)); 448writer.WriteString(new UTF8Encoding().GetString(keyIdentifier, 0, keyIdentifier.Length));
System.Runtime.Serialization (6)
System\Xml\EncodingStreamWrapper.cs (4)
429ThrowEncodingMismatch(SafeUTF8.GetString(buffer, encStart, encCount), SafeUTF8.GetString(encodingUTF8, 0, encodingUTF8.Length)); 433ThrowEncodingMismatch(SafeUTF8.GetString(buffer, encStart, encCount), e); 437ThrowEncodingMismatch(SafeUTF8.GetString(buffer, encStart, encCount), e);
System\Xml\XmlConverter.cs (1)
368return UTF8Encoding.GetString(buffer, offset, count);
System\Xml\XmlExceptionHelper.cs (1)
278return CreateEncodingException(new System.Text.UTF8Encoding(false, false).GetString(buffer, offset, count), exception);
System.ServiceModel (1)
System\ServiceModel\Configuration\IssuedTokenParametersElement.cs (1)
303string commentString = new UTF8Encoding().GetString(memoryStream.GetBuffer(), 0, (int)memoryStream.Length);