Merge pull request #2780 from alexanderkyte/seq_point_optimize
[mono.git] / mcs / class / referencesource / System.Core / System.Core.txt
1 ;==++==
2 ;
3 ;   Copyright (c) Microsoft Corporation.  All rights reserved.
4 ;
5 ;==--==
6
7 ; NOTE: do not use \", use ' instead
8 ; NOTE: Use # or ; for comments
9
10 ; These are the managed resources for System.Core.Dll.  See
11 ; ResourceManager documentation and the ResGen tool.
12
13 ;
14 ; ///// begin Common /////
15
16
17 ArgumentOutOfRange_NeedNonNegNum=Non negative number is required.
18
19 ;
20 ; ///// end Common /////
21 ;
22
23
24 ;
25 ; ///// begin IO /////
26 ;
27 ; ArgumentException
28 ;
29 Argument_WrongAsyncResult=IAsyncResult object did not come from the corresponding async method on this type.
30 Argument_InvalidOffLen=Offset and length were out of bounds for the array or count is greater than the number of elements from index to the end of the source collection.
31 Argument_NeedNonemptyPipeName=pipeName cannot be an empty string.
32 Argument_EmptyServerName=serverName cannot be an empty string.  Use \".\" for current machine.
33 Argument_NonContainerInvalidAnyFlag=This flag may not be set on a pipe.
34 Argument_InvalidHandle=Invalid handle.
35 ;
36 ; ArgumentNullException
37 ;
38 ArgumentNull_Buffer=Buffer cannot be null.
39 ArgumentNull_ServerName=serverName cannot be null. Use "." for current machine.
40 ;
41 ; ArgumentOutOfRangeException
42 ;
43 ArgumentOutOfRange_AdditionalAccessLimited=additionalAccessRights is limited to the PipeAccessRights.ChangePermissions, PipeAccessRights.TakeOwnership, and PipeAccessRights.AccessSystemSecurity flags when creating NamedPipeServerStreams.
44 ArgumentOutOfRange_AnonymousReserved=The pipeName "anonymous" is reserved.
45 ArgumentOutOfRange_TransmissionModeByteOrMsg=For named pipes, transmission mode can be TransmissionMode.Byte or PipeTransmissionMode.Message. For anonymous pipes, transmission mode can be TransmissionMode.Byte.
46 ArgumentOutOfRange_DirectionModeInOrOut=PipeDirection.In or PipeDirection.Out required.
47 ArgumentOutOfRange_DirectionModeInOutOrInOut=For named pipes, the pipe direction can be PipeDirection.In, PipeDirection.Out or PipeDirection.InOut. For anonymous pipes, the pipe direction can be PipeDirection.In or PipeDirection.Out.
48 ArgumentOutOfRange_ImpersonationInvalid=TokenImpersonationLevel.None, TokenImpersonationLevel.Anonymous, TokenImpersonationLevel.Identification, TokenImpersonationLevel.Impersonation or TokenImpersonationLevel.Delegation required.
49 ArgumentOutOfRange_ImpersonationOptionsInvalid=impersonationOptions contains an invalid flag.
50 ArgumentOutOfRange_OptionsInvalid=options contains an invalid flag.
51 ArgumentOutOfRange_HandleInheritabilityNoneOrInheritable=HandleInheritability.None or HandleInheritability.Inheritable required.
52 ArgumentOutOfRange_InvalidPipeAccessRights=Invalid PipeAccessRights flag.
53 ArgumentOutOfRange_InvalidTimeout=Timeout must be non-negative or equal to -1 (Timeout.Infinite)
54 ArgumentOutOfRange_MaxNumServerInstances=maxNumberOfServerInstances must either be a value between 1 and 254, or NamedPipeServerStream.MaxAllowedServerInstances (to obtain the maximum number allowed by system resources).
55 ArgumentOutOfRange_NeedValidPipeAccessRights=Need valid PipeAccessRights value.
56 ;
57 ; IndexOutOfRangeException
58 ;
59 IndexOutOfRange_IORaceCondition=Probable I/O race condition detected while copying memory. The I/O package is not thread safe by default unless stated otherwise. In multithreaded applications, access streams in a thread-safe way, such as a thread-safe wrapper returned by TextReader's or TextWriter's Synchronized methods. This also applies to classes like StreamWriter and StreamReader.
60 ;
61 ; InvalidOperationException
62 ;
63 InvalidOperation_EndReadCalledMultiple=EndRead can only be called once for each asynchronous operation.
64 InvalidOperation_EndWriteCalledMultiple=EndWrite can only be called once for each asynchronous operation.
65 InvalidOperation_EndWaitForConnectionCalledMultiple=EndWaitForConnection can only be called once for each asynchronous operation.
66 InvalidOperation_PipeNotYetConnected=Pipe hasn't been connected yet.
67 InvalidOperation_PipeDisconnected=Pipe is in a disconnected state.
68 InvalidOperation_PipeHandleNotSet=Pipe handle has not been set.  Did your PipeStream implementation call InitializeHandle?
69 InvalidOperation_PipeNotAsync=Pipe is not opened in asynchronous mode.
70 InvalidOperation_PipeReadModeNotMessage=ReadMode is not of PipeTransmissionMode.Message.
71 InvalidOperation_PipeMessageTypeNotSupported=This pipe does not support message type transmission.
72 InvalidOperation_PipeAlreadyConnected=Already in a connected state.
73 InvalidOperation_PipeAlreadyDisconnected=Already in a disconnected state.
74 InvalidOperation_PipeClosed=Pipe is closed.
75 ;
76 ;
77 ;
78 IO_FileTooLongOrHandleNotSync=IO operation will not work. Most likely the file will become too long or the handle was not opened to support synchronous IO operations.
79 ;
80 ; EOFException
81 ;
82 IO_EOF_ReadBeyondEOF=Unable to read beyond the end of the stream.
83 ;
84 ; FileNotFoundException
85 ;
86 IO_FileNotFound=Unable to find the specified file.
87 IO_FileNotFound_FileName=Could not find file '{0}'.
88 ;
89 ; IOException
90 ;
91 IO_IO_AlreadyExists_Name=Cannot create "{0}" because a file or directory with the same name already exists.
92 IO_IO_BindHandleFailed=BindHandle for ThreadPool failed on this handle.
93 IO_IO_FileExists_Name=The file '{0}' already exists.
94 IO_IO_NoPermissionToDirectoryName=<Path discovery permission to the specified directory was denied.>
95 IO_IO_SharingViolation_File=The process cannot access the file '{0}' because it is being used by another process.
96 IO_IO_SharingViolation_NoFileName=The process cannot access the file because it is being used by another process.
97 IO_IO_PipeBroken=Pipe is broken.
98 IO_IO_InvalidPipeHandle=Invalid pipe handle.
99 ;
100 ; DirectoryNotFoundException
101 ;
102 IO_DriveNotFound_Drive=Could not find the drive '{0}'. The drive might not be ready or might not be mapped.
103 IO_PathNotFound_Path=Could not find a part of the path '{0}'.
104 IO_PathNotFound_NoPathName=Could not find a part of the path.
105 ;
106 ; PathTooLongException
107 ;
108 IO_PathTooLong=The specified path, file name, or both are too long. The fully qualified file name must be less than 260 characters, and the directory name must be less than 248 characters.
109 ;
110 ; NotSupportedException
111 ;
112 NotSupported_IONonFileDevices=Opening Win32 devices other than file such as COM ports, printers, disk partitions and tape drives is not supported. Avoid use of "\\\\.\\" in the path.
113 NotSupported_MemStreamNotExpandable=Memory stream is not expandable.
114 NotSupported_UnreadableStream=Stream does not support reading.
115 NotSupported_UnseekableStream=Stream does not support seeking.
116 NotSupported_UnwritableStream=Stream does not support writing.
117 NotSupported_AnonymousPipeUnidirectional=Anonymous pipes can only be in one direction.
118 NotSupported_AnonymousPipeMessagesNotSupported=Anonymous pipes do not support PipeTransmissionMode.Message ReadMode.
119 ;
120 ; ObjectDisposedException
121 ;
122 ObjectDisposed_FileClosed=Cannot access a closed file.
123 ObjectDisposed_PipeClosed=Cannot access a closed pipe.
124 ObjectDisposed_ReaderClosed=Cannot read from a closed TextReader.
125 ObjectDisposed_StreamClosed=Cannot access a closed Stream.
126 ObjectDisposed_WriterClosed=Cannot write to a closed TextWriter.
127 ;
128 ; PlatformNotSupportedException
129 ;
130 PlatformNotSupported_NamedPipeServers=Named Pipe Servers are not supported on Windows 95/98/ME.
131 ;
132 ; UnauthorizedAccessException
133 ;
134 UnauthorizedAccess_IODenied_Path=Access to the path '{0}' is denied.
135 UnauthorizedAccess_IODenied_NoPathName=Access to the path is denied.
136
137 ;
138 ;
139 ; ///// end IO //////
140 ;
141 ;
142
143
144 ;
145 ; ///// begin Diagnostics /////
146 ;
147
148 TraceAsTraceSource=Trace
149 ;
150 ;
151 ArgumentOutOfRange_NeedValidLogRetention=Need valid log retention option.
152 ArgumentOutOfRange_NeedMaxFileSizeGEBufferSize=Maximum file size value should be greater than or equal to bufferSize.
153 ArgumentOutOfRange_NeedValidMaxNumFiles=Maximum number of files value should be greater than or equal to '{0}' for this retention
154 ;
155
156 ;
157 ; ETW EventProvider
158 ;
159 ArgumentOutOfRange_NeedValidId=The ID parameter must be in the range {0} through {1}.
160 ArgumentOutOfRange_MaxArgExceeded=The total number of parameters must not exceed {0}. 
161 ArgumentOutOfRange_MaxStringsExceeded=The number of String parameters must not exceed {0}.
162 NotSupported_DownLevelVista=This functionality is only supported in Windows Vista and above.
163 Argument_NeedNonemptyDelimiter=Delimiter cannot be an empty string.
164
165 ; NotSupportedException
166 NotSupported_SetTextWriter=Setting TextWriter is unsupported on this listener.
167
168 ;
169 ; ///// end Diagnostics /////
170 ;
171
172 ;
173 ; ///// beging Diagnostics.PerformanceData /////
174 ;
175 Perflib_PlatformNotSupported=Classes in System.Diagnostics.PerformanceData is only supported in Windows Vista and above.
176 Perflib_Argument_CounterSetAlreadyRegister=CounterSet '{0}' already registered.
177 Perflib_Argument_InvalidCounterType=CounterType '{0}' is not a valid CounterType.
178 Perflib_Argument_InvalidCounterSetInstanceType=CounterSetInstanceType '{0}' is not a valid CounterSetInstanceType.
179 Perflib_Argument_InstanceAlreadyExists=Instance '{0}' already exists in CounterSet '{1}'.
180 Perflib_Argument_CounterAlreadyExists=CounterId '{0}' already added to CounterSet '{1}'.
181 Perflib_Argument_CounterNameAlreadyExists=CounterName '{0}' already added to CounterSet '{1}'.
182 Perflib_Argument_ProviderNotFound=CounterSet provider '{0}' not found.
183 Perflib_Argument_InvalidInstance=Single instance type CounterSet '{0}' can only have 1 CounterSetInstance.
184 Perflib_Argument_EmptyInstanceName=Non-empty instanceName required.
185 Perflib_Argument_EmptyCounterName=Non-empty counterName required.
186
187 Perflib_InsufficientMemory_InstanceCounterBlock=Cannot allocate raw counter data for CounterSet '{0}' Instance '{1}'.
188 Perflib_InsufficientMemory_CounterSetTemplate=Cannot allocate memory for CounterSet '{0}' template with size '{1}'.
189
190 Perflib_InvalidOperation_CounterRefValue=Cannot locate raw counter data location for CounterSet '{0}', Counter '{1}, in Instance '{2}'.
191 Perflib_InvalidOperation_CounterSetNotInstalled=CounterSet '{0}' not installed yet.
192 Perflib_InvalidOperation_InstanceNotFound=Cannot find Instance '{0}' in CounterSet '{1}'.
193 Perflib_InvalidOperation_AddCounterAfterInstance=Cannot AddCounter to CounterSet '{0}' after CreateCounterSetInstance.
194 Perflib_InvalidOperation_NoActiveProvider=CounterSet provider '{0}' not active.
195 Perflib_InvalidOperation_CounterSetContainsNoCounter=CounterSet '{0}' does not include any counters.
196 ;
197 ; ///// end Diagnostics.PerformanceData /////
198 ;
199
200 ;
201 ; ///// begin System.Collections.Generic /////
202 ;
203
204 ; ArgumentException
205 Arg_ArrayPlusOffTooSmall=Destination array is not long enough to copy all the items in the collection. Check array index and length.
206 Arg_HSCapacityOverflow=HashSet capacity is too big.
207
208 ; InvalidOperationException
209 InvalidOperation_EnumFailedVersion=Collection was modified; enumeration operation may not execute.
210 InvalidOperation_EnumOpCantHappen=Enumeration has either not started or has already finished.
211
212 ; Serialization Exceptions
213 Serialization_MissingKeys=The Keys for this dictionary are missing.
214
215 ;
216 ; ///// end System.Collections.Generic /////
217 ;
218
219 ;
220 ; ///// begin System.Threading.ReaderWriterLockSlim /////
221 ;
222 ; LockRecursionException
223 ;
224 LockRecursionException_RecursiveReadNotAllowed=Recursive read lock acquisitions not allowed in this mode.
225 LockRecursionException_RecursiveWriteNotAllowed=Recursive write lock acquisitions not allowed in this mode.
226 LockRecursionException_RecursiveUpgradeNotAllowed=Recursive upgradeable lock acquisitions not allowed in this mode.
227 LockRecursionException_ReadAfterWriteNotAllowed=A read lock may not be acquired with the write lock held in this mode.
228 LockRecursionException_WriteAfterReadNotAllowed=Write lock may not be acquired with read lock held. This pattern is prone to deadlocks. Please ensure that read locks are released before taking a write lock. If an upgrade is necessary, use an upgrade lock in place of the read lock.
229 LockRecursionException_UpgradeAfterReadNotAllowed=Upgradeable lock may not be acquired with read lock held.
230 LockRecursionException_UpgradeAfterWriteNotAllowed=Upgradeable lock may not be acquired with write lock held in this mode. Acquiring Upgradeable lock gives the ability to read along with an option to upgrade to a writer.
231 ;
232 ;SynchronizationLockException
233 ;
234 SynchronizationLockException_MisMatchedRead=The read lock is being released without being held.
235 SynchronizationLockException_MisMatchedWrite=The write lock is being released without being held.
236 SynchronizationLockException_MisMatchedUpgrade=The upgradeable lock is being released without being held.
237 SynchronizationLockException_IncorrectDispose=The lock is being disposed while still being used. It either is being held by a thread and/or has active waiters waiting to acquire the lock.
238 ;
239 ; ///// end System.Threading.ReaderWriterLockSlim   /////
240 ;
241
242 ;
243 ; Cryptography exception strings
244 ;
245 Cryptography_ArgECDHKeySizeMismatch=The keys from both parties must be the same size to generate a secret agreement.
246 Cryptography_ArgECDHRequiresECDHKey=Keys used with the ECDiffieHellmanCng algorithm must have an algorithm group of ECDiffieHellman.
247 Cryptography_ArgECDsaRequiresECDsaKey=Keys used with the ECDsaCng algorithm must have an algorithm group of ECDsa.
248 Cryptography_ArgExpectedECDiffieHellmanCngPublicKey=DeriveKeyMaterial requires an ECDiffieHellmanCngPublicKey.
249 Cryptography_ArgMustBeCngAlgorithm=Object must be of type CngAlgorithm.
250 Cryptography_ArgMustBeCngAlgorithmGroup=Object must be of type CngAlgorithmGroup.
251 Cryptography_ArgMustBeCngKeyBlobFormat=Object must be of type CngKeyBlobFormat.
252 Cryptography_ArgMustBeCngProvider=Object must be of type CngProvider.
253 Cryptography_DecryptWithNoKey=Decrypting a value requires that a key be set on the algorithm object.
254 Cryptography_ECXmlSerializationFormatRequired=XML serialization of an elliptic curve key requires using an overload which specifies the XML format to be used.
255 Cryptography_InvalidAlgorithmGroup=The algorithm group '{0}' is invalid.
256 Cryptography_InvalidAlgorithmName=The algorithm name '{0}' is invalid.
257 Cryptography_InvalidCipherMode=The specified cipher mode is not valid for this algorithm.
258 Cryptography_InvalidIVSize=The specified initialization vector (IV) does not match the block size for this algorithm.
259 Cryptography_InvalidKeyBlobFormat=The key blob format '{0}' is invalid.
260 Cryptography_InvalidKeySize=The specified key is not a valid size for this algorithm.
261 Cryptography_InvalidPadding=Padding is invalid and cannot be removed.
262 Cryptography_InvalidProviderName=The provider name '{0}' is invalid.
263 Cryptography_MissingDomainParameters=Could not read the domain parameters from the XML string.
264 Cryptography_MissingPublicKey=Could not read the public key from the XML string.
265 Cryptography_MissingIV=The cipher mode specified requires that an initialization vector (IV) be used.
266 Cryptography_MustTransformWholeBlock=TransformBlock may only process bytes in block sized increments.
267 Cryptography_NonCompliantFIPSAlgorithm=This implementation is not part of the Windows Platform FIPS validated cryptographic algorithms.
268 Cryptography_OpenInvalidHandle=Cannot open an invalid handle.
269 Cryptography_OpenEphemeralKeyHandleWithoutEphemeralFlag=The CNG key handle being opened was detected to be ephemeral, but the EphemeralKey open option was not specified.
270 Cryptography_PartialBlock=The input data is not a complete block.
271 Cryptography_PlatformNotSupported=The specified cryptographic algorithm is not supported on this platform.
272 Cryptography_TlsRequiresLabelAndSeed=The TLS key derivation function requires both the label and seed properties to be set.
273 Cryptography_TransformBeyondEndOfBuffer=Attempt to transform beyond end of buffer.
274 Cryptography_UnknownEllipticCurve=Unknown elliptic curve.
275 Cryptography_UnknownEllipticCurveAlgorithm=Unknown elliptic curve algorithm.
276 Cryptography_UnknownPaddingMode=Unknown padding mode used.
277 Cryptography_UnexpectedXmlNamespace=The XML namespace '{0}' was unexpected, expected '{1}'.
278
279 ;
280 ;  ///// begin System.CommandLine ////
281 ;
282 ; CommandLineParser Resource Messages
283
284 ArgumentException_RangeMinRangeMaxRangeType=Cannot accept MinRange {0} because it is not the same type as MaxRange {1}. Verify that the MaxRange and MinRange values are of the same type and try again.
285 ArgumentException_RangeNotIComparable=Cannot accept MaxRange and MinRange because they are not IComparable.
286 ArgumentException_RangeMaxRangeSmallerThanMinRange=Cannot accept MaxRange because it is less than MinRange. Specify a MaxRange value that is greater than or equal to the MinRange value and try again.
287 ArgumentException_CountMaxLengthSmallerThanMinLength=MaxLength should be greater than MinLength.
288 ArgumentException_LengthMaxLengthSmallerThanMinLength=Cannot accept MaxLength value. Specify MaxLength value greater than the value of MinLength and try again.
289 ArgumentException_UnregisteredParameterName=Parameter {0} has not been added to this parser.
290 ArgumentException_InvalidParameterName={0} is an invalid parameter name.
291 ArgumentException_DuplicateName=The name {0} is already in use.
292 ArgumentException_DuplicatePosition=The position {0} is already in use.
293 ArgumentException_NoParametersFound=The object has no parameters associated with it.
294 ArgumentException_HelpMessageBaseNameNullOrEmpty=Help message base name may not be null or empty.
295 ArgumentException_HelpMessageResourceIdNullOrEmpty=Help message resource id may not be null or empty.
296 ArgumentException_HelpMessageNullOrEmpty=Help message may not be null or empty.
297 ArgumentException_RegexPatternNullOrEmpty=The regular expression pattern may not be null or empty.
298 ArgumentException_RequiredPositionalAfterOptionalPositional=Optional positional parameter {0} cannot precede required positional parameter {1}.
299 ArgumentException_DuplicateParameterAttribute=Duplicate parameter attributes with the same parameter set on parameter {0}.
300 ArgumentException_MissingBaseNameOrResourceId=On parameter {0}, either both HelpMessageBaseName and HelpMessageResourceId must be set or neither can be set.
301 ArgumentException_DuplicateRemainingArgumets=Can not set {0} as the remaining arguments parameter for parameter set {1} because that parameter set already has a parameter set as the remaining arguments parameter.
302 ArgumentException_TypeMismatchForRemainingArguments=Parameter {0} must be an array of strings if it can have its value from the remaining arguments.
303 ArgumentException_ValidationParameterTypeMismatch=Validator {0} may not be applied to a parameter of type {1}.
304 ArgumentException_ParserBuiltWithValueType=The parameter toBind may not be an instance of a value type.
305
306 InvalidOperationException_GetParameterTypeMismatch=Parameter {0} may not retrieved with type {1} since it is of type {2}.
307 InvalidOperationException_GetParameterValueBeforeParse=Parse must be called before retrieving parameter values.
308 InvalidOperationException_SetRemainingArgumentsParameterAfterParse=AllowRemainingArguments may not be set after Parse has been called.
309 InvalidOperationException_AddParameterAfterParse=Parameters may not be added after Parse has been called.
310 InvalidOperationException_BindAfterBind=Parse may only be called once.
311 InvalidOperationException_GetRemainingArgumentsNotAllowed=GetRemainingArguments may not be called unless AllowRemainingArguments is set to true.
312 InvalidOperationException_ParameterSetBeforeParse=The SpecifiedParameterSet property may only be accessed after Parse has been called successfully.
313
314 CommandLineParser_Aliases=Aliases
315 CommandLineParser_ErrorMessagePrefix=Error
316 CommandLineParser_HelpMessagePrefix=Usage
317
318 ParameterBindingException_AmbiguousParameterName=Prefix {0} resolves to multiple parameters: {1}.  Use a more specific prefix for this parameter. 
319 ParameterBindingException_ParameterValueAlreadySpecified=Parameter {0} already given value of {1}.
320 ParameterBindingException_UnknownParameteName=Unknown parameter {0}.
321 ParameterBindingException_RequiredParameterMissingCommandLineValue=Parameter {0} must be followed by a value.
322 ParameterBindingException_UnboundCommandLineArguments=Unbound parameters left on command line: {0}.
323 ParameterBindingException_UnboundMandatoryParameter=Values for required parameters missing: {0}.
324 ParameterBindingException_ResponseFileException=Could not open response file {0}: {1}
325 ParameterBindingException_ValididationError=Could not validate parameter {0}: {1}
326 ParameterBindingException_TransformationError=Could not convert {0} to type {1}.
327 ParameterBindingException_AmbiguousParameterSet=Named parameters specify an ambiguous parameter set.  Specify more parameters by name.
328 ParameterBindingException_UnknownParameterSet=No valid parameter set for named parameters.  Make sure all named parameters belong to the same parameter set.
329 ParameterBindingException_NestedResponseFiles=A response file may not contain references to other response files.
330
331 ValidateMetadataException_RangeGreaterThanMaxRangeFailure=The value {0} was greater than the maximum value {1}. Specify a value less than or equal to the maximum value and try again.
332 ValidateMetadataException_RangeSmallerThanMinRangeFailure=The value {0} was smaller than the minimum value {1}. Specify a value greater than or equal to the minimum value and try again.
333 ValidateMetadataException_PatternFailure=The value {0} does not match the pattern {1}.
334 ValidateMetadataException_CountMinLengthFailure=The number of values should be greater than or equal to {0} instead of {1}.
335 ValidateMetadataException_CountMaxLengthFailure=The number of values should be less than or equal to {0} instead of {1}.
336 ValidateMetadataException_LengthMinLengthFailure=The length should be greater than or equal to {0} instead of {1}.
337 ValidateMetadataException_LengthMaxLengthFailure=The length should be less than or equal to {0} instead of {1}.
338
339 ;
340 ; ///// begin MemoryMappedFiles /////
341 ;
342 ; ArgumentException
343 ;
344 Argument_MapNameEmptyString=Map name cannot be an empty string.
345 Argument_EmptyFile=A positive capacity must be specified for a Memory Mapped File backed by an empty file.
346 Argument_NewMMFWriteAccessNotAllowed=MemoryMappedFileAccess.Write is not permitted when creating new memory mapped files. Use MemoryMappedFileAccess.ReadWrite instead.
347 Argument_ReadAccessWithLargeCapacity=When specifying MemoryMappedFileAccess.Read access, the capacity must not be larger than the file size.
348 Argument_NewMMFAppendModeNotAllowed=FileMode.Append is not permitted when creating new memory mapped files. Instead, use MemoryMappedFileView to ensure write-only access within a specified region.
349 ;
350 ; ArgumentNullException
351 ;
352 ArgumentNull_MapName=Map name cannot be null.
353 ArgumentNull_FileStream=fileStream cannot be null.
354 ;
355 ; ArgumentOutOfRangeException
356 ;
357 ArgumentOutOfRange_CapacityLargerThanLogicalAddressSpaceNotAllowed=The capacity cannot be greater than the size of the system's logical address space.
358 ArgumentOutOfRange_NeedPositiveNumber=A positive number is required.
359 ArgumentOutOfRange_PositiveOrDefaultCapacityRequired=The capacity must be greater than or equal to 0. 0 represents the the size of the file being mapped.
360 ArgumentOutOfRange_PositiveOrDefaultSizeRequired=The size must be greater than or equal to 0. If 0 is specified, the view extends from the specified offset to the end of the file mapping.
361 ArgumentOutOfRange_PositionLessThanCapacityRequired=The position may not be greater or equal to the capacity of the accessor.
362 ArgumentOutOfRange_CapacityGEFileSizeRequired=The capacity may not be smaller than the file size.
363 ;
364 ; IOException
365 ;
366 IO_NotEnoughMemory=Not enough memory to map view.
367 ;
368 ;
369 ; InvalidOperationException
370 ;
371 InvalidOperation_CalledTwice=Cannot call this operation twice.
372 InvalidOperation_CantCreateFileMapping=Cannot create file mapping.
373 InvalidOperation_ViewIsNull=The underlying MemoryMappedView object is null.
374 ;
375 ; NotSupportedException
376 ;
377 NotSupported_DelayAllocateFileBackedNotAllowed=The MemoryMappedFileOptions.DelayAllocatePages option is not supported with memory mapped files mapping files on disk.
378 NotSupported_MMViewStreamsFixedLength=MemoryMappedViewStreams are fixed length.
379 ;
380 ; ObjectDisposedException
381 ;
382 ObjectDisposed_ViewAccessorClosed=Cannot access a closed accessor.
383 ObjectDisposed_StreamIsClosed=Cannot access a closed Stream.
384