本文整理汇总了C#中com.hashSeed方法的典型用法代码示例。如果您正苦于以下问题:C# com.hashSeed方法的具体用法?C# com.hashSeed怎么用?C# com.hashSeed使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com
的用法示例。
在下文中一共展示了com.hashSeed方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: ReaderBasedJsonParser
/// <summary>
/// Method called when caller wants to provide input buffer directly,
/// and it may or may not be recyclable use standard recycle context.
/// </summary>
/// <since>2.4</since>
public ReaderBasedJsonParser(com.fasterxml.jackson.core.io.IOContext ctxt, int features
, System.IO.StreamReader r, com.fasterxml.jackson.core.ObjectCodec codec, com.fasterxml.jackson.core.sym.CharsToNameCanonicalizer
st, char[] inputBuffer, int start, int end, bool bufferRecyclable)
: base(ctxt, features)
{
// final in 2.3, earlier
// Latin1 encoding is not supported, but we do use 8-bit subset for
// pre-processing task, to simplify first pass, keep it fast.
/*
/**********************************************************
/* Input configuration
/**********************************************************
*/
/*
/**********************************************************
/* Configuration
/**********************************************************
*/
/*
/**********************************************************
/* Parsing state
/**********************************************************
*/
/*
/**********************************************************
/* Life-cycle
/**********************************************************
*/
_reader = r;
_inputBuffer = inputBuffer;
_inputPtr = start;
_inputEnd = end;
_objectCodec = codec;
_symbols = st;
_hashSeed = st.hashSeed();
_bufferRecyclable = bufferRecyclable;
}