Script\Serialization\ObjectConverter.cs (7)
190throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.JSON_DictionaryTypeNotSupported, type.FullName));
233throw new MissingMethodException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.JSON_NoConstructor, type.FullName));
236throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.JSON_DeserializerTypeMismatch, type.FullName));
287throw new InvalidOperationException(AtlasWeb.JSON_ValueTypeCannotBeNull);
403throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.JSON_CannotConvertObjectToType, o.GetType(), type));
477throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.JSON_CannotCreateListType, type.FullName));
513CultureInfo.CurrentCulture, AtlasWeb.JSON_ArrayTypeNotSupported, type.FullName));
UI\AsyncPostBackTrigger.cs (4)
81throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
85throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.Common_ScriptManagerRequired, Owner.ID));
104throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.AsyncPostBackTrigger_CannotFindEvent, eventName, ControlID, Owner.ID));
112throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.AsyncPostBackTrigger_InvalidEvent, eventName, ControlID, Owner.ID));
UI\PageRequestManager.cs (6)
226return new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptManager_InvalidControlRegistration, control.ID));
580throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptManager_CannotRegisterBothPostBacks, control.ID));
597throw new InvalidOperationException(AtlasWeb.PageRequestManager_RegisterDataItemInNonAsyncRequest);
607AtlasWeb.PageRequestManager_RegisterDataItemTwice,
627throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptManager_CannotRegisterBothPostBacks, control.ID));
918throw new ArgumentException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptManager_UpdatePanelNotRegistered, updatePanel.ID), "updatePanel");
UI\ScriptRegistrationManager.cs (13)
126throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptRegistrationManager_InvalidChars, entry.Type.FullName, entry.Key, tweenSpace));
175throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
192throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
215throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
236throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
250throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
283throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
338throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
360throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
380throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
403throw new ArgumentException(AtlasWeb.ScriptRegistrationManager_ControlNotOnPage, "control");
674throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptRegistrationManager_NoCloseTag, activeRegistration.Type.FullName, activeRegistration.Key));
716throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.ScriptRegistrationManager_NoTags, activeRegistration.Type.FullName, activeRegistration.Key));
UI\UpdatePanel.cs (13)
102throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotSetContentTemplate, ID));
150throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
192throw new InvalidOperationException(AtlasWeb.Common_PageCannotBeNull);
196throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.Common_ScriptManagerRequired, ID));
353throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_ChildrenTriggersAndUpdateAlways, ID));
432throw new InvalidOperationException(AtlasWeb.UpdatePanel_SetPartialRenderingModeCalledOnce);
441throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_UpdateConditional, ID));
445throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_UpdateTooLate, ID));
472throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotModifyControlCollection, Owner.ID));
476throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotModifyControlCollection, Owner.ID));
480throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotModifyControlCollection, Owner.ID));
495throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotModifyControlCollection, Owner.ID));
502throw new InvalidOperationException(String.Format(CultureInfo.InvariantCulture, AtlasWeb.UpdatePanel_CannotModifyControlCollection, Owner.ID));
UI\WebControls\Dynamic.cs (49)
434return string.Format(CultureInfo.InvariantCulture, AtlasWeb.ParseException_ParseExceptionFormat, Message, position);
677throw ParseError(AtlasWeb.ExpressionParser_DuplicateIdentifier, name);
686throw ParseError(exprPos, AtlasWeb.ExpressionParser_ExpressionTypeMismatch, GetTypeName(resultType));
687ValidateToken(TokenId.End, AtlasWeb.ExpressionParser_SyntaxError);
708ValidateToken(TokenId.End, AtlasWeb.ExpressionParser_SyntaxError);
720ValidateToken(TokenId.Colon, AtlasWeb.ExpressionParser_ColonExpected);
931throw ParseError(AtlasWeb.ExpressionParser_ExpressionExpected);
948throw ParseError(AtlasWeb.ExpressionParser_InvalidCharacterLiteral);
962throw ParseError(AtlasWeb.ExpressionParser_InvalidIntegerLiteral, text);
972throw ParseError(AtlasWeb.ExpressionParser_InvalidIntegerLiteral, text);
993if (value == null) throw ParseError(AtlasWeb.ExpressionParser_InvalidRealLiteral, text);
1006ValidateToken(TokenId.OpenParen, AtlasWeb.ExpressionParser_OpenParenExpected);
1009ValidateToken(TokenId.CloseParen, AtlasWeb.ExpressionParser_CloseParenOrOperatorExpected);
1039throw ParseError(AtlasWeb.ExpressionParser_UnknownIdentifier, token.text);
1044throw ParseError(AtlasWeb.ExpressionParser_NoItInScope);
1054throw ParseError(errorPos, AtlasWeb.ExpressionParser_IifRequiresThreeArgs);
1060throw ParseError(errorPos, AtlasWeb.ExpressionParser_FirstExprMustBeBool);
1074throw ParseError(errorPos, AtlasWeb.ExpressionParser_BothTypesConvertToOther, type1, type2);
1075throw ParseError(errorPos, AtlasWeb.ExpressionParser_NeitherTypeConvertsToOther, type1, type2);
1083ValidateToken(TokenId.OpenParen, AtlasWeb.ExpressionParser_OpenParenExpected);
1098if (me == null) throw ParseError(exprPos, AtlasWeb.ExpressionParser_MissingAsClause);
1106ValidateToken(TokenId.CloseParen, AtlasWeb.ExpressionParser_CloseParenOrCommaExpected);
1121throw ParseError(errorPos, AtlasWeb.ExpressionParser_ArgsIncompatibleWithLambda);
1130throw ParseError(errorPos, AtlasWeb.ExpressionParser_TypeHasNoNullableForm, GetTypeName(type));
1141throw ParseError(errorPos, AtlasWeb.ExpressionParser_NoMatchingConstructor, GetTypeName(type));
1145throw ParseError(errorPos, AtlasWeb.ExpressionParser_AmbiguousConstructorInvocation, GetTypeName(type));
1148ValidateToken(TokenId.Dot, AtlasWeb.ExpressionParser_DotOrOpenParenExpected);
1167throw ParseError(errorPos, AtlasWeb.ExpressionParser_CannotConvertValue,
1188throw ParseError(errorPos, AtlasWeb.ExpressionParser_NoApplicableMethod,
1193throw ParseError(errorPos, AtlasWeb.ExpressionParser_MethodsAreInaccessible, GetTypeName(method.DeclaringType));
1195throw ParseError(errorPos, AtlasWeb.ExpressionParser_MethodIsVoid,
1199throw ParseError(errorPos, AtlasWeb.ExpressionParser_AmbiguousMethodInvocation,
1206throw ParseError(errorPos, AtlasWeb.ExpressionParser_UnknownPropertyOrField,
1236throw ParseError(errorPos, AtlasWeb.ExpressionParser_NoApplicableAggregate, methodName);
1254ValidateToken(TokenId.OpenParen, AtlasWeb.ExpressionParser_OpenParenExpected);
1257ValidateToken(TokenId.CloseParen, AtlasWeb.ExpressionParser_CloseParenOrCommaExpected);
1274ValidateToken(TokenId.OpenBracket, AtlasWeb.ExpressionParser_OpenParenExpected);
1277ValidateToken(TokenId.CloseBracket, AtlasWeb.ExpressionParser_CloseBracketOrCommaExpected);
1281throw ParseError(errorPos, AtlasWeb.ExpressionParser_CannotIndexMultipleDimensionalArray);
1284throw ParseError(errorPos, AtlasWeb.ExpressionParser_InvalidIndex);
1293throw ParseError(errorPos, AtlasWeb.ExpressionParser_NoApplicableIndexer,
1298throw ParseError(errorPos, AtlasWeb.ExpressionParser_AmbiguousIndexerInvocation,
1368throw ParseError(errorPos, AtlasWeb.ExpressionParser_IncompatibleOperand,
1383return ParseError(pos, AtlasWeb.ExpressionParser_IncompatibleOperands,
1946throw ParseError(textPos, AtlasWeb.ExpressionParser_UnterminatedStringLiteral);
1988throw ParseError(textPos, AtlasWeb.ExpressionParser_InvalidCharacter, ch);
2029ValidateToken(TokenId.Identifier, AtlasWeb.ExpressionParser_IdentifierExpected);
2036if (!Char.IsDigit(ch)) throw ParseError(textPos, AtlasWeb.ExpressionParser_DigitExpected);
2044if (token.id != t) throw ParseError(AtlasWeb.ExpressionParser_SyntaxError);
UI\WebControls\LinqDataSourceView.cs (18)
114AtlasWeb.LinqDataSourceView_ContextTypeNameNotSpecified, _owner.ID));
121AtlasWeb.LinqDataSourceView_ContextTypeNameNotFound, _owner.ID), e);
136AtlasWeb.LinqDataSourceView_ContextTypeNameChanged, _owner.ID));
177AtlasWeb.LinqDataSourceView_EnableObjectTrackingChanged, _owner.ID));
216AtlasWeb.LinqDataSourceView_TableNameChanged, _owner.ID));
360AtlasWeb.LinqDataSourceView_TableCannotBeStatic, TableName, contextType.Name, _owner.ID));
387AtlasWeb.LinqDataSourceView_TableNameNotFound, TableName, contextType.Name, _owner.ID));
611AtlasWeb.LinqDataSourceView_TableNameNotSpecified, _owner.ID));
636AtlasWeb.LinqDataSourceView_ValidationFailed,
886AtlasWeb.LinqDataSourceView_ValidationFailed, oldDataObject.GetType(), validateExceptions.Values.First().Message), validateExceptions);
923AtlasWeb.LinqDataSourceView_InvalidContextType, _owner.ID));
930AtlasWeb.LinqDataSourceView_DeleteNotSupported, _owner.ID));
938AtlasWeb.LinqDataSourceView_GroupByNotSupportedOnEdit, _owner.ID));
942AtlasWeb.LinqDataSourceView_SelectNewNotSupportedOnEdit, _owner.ID));
949AtlasWeb.LinqDataSourceView_InsertNotSupported, _owner.ID));
954AtlasWeb.LinqDataSourceView_InsertRequiresValues, _owner.ID));
962AtlasWeb.LinqDataSourceView_InvalidTablePropertyType, _owner.ID));
970AtlasWeb.LinqDataSourceView_UpdateNotSupported, _owner.ID));
UI\WebControls\ListView.cs (47)
131throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
163throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
179throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
196throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
213throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
268throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
513throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
533throw new ArgumentOutOfRangeException("value", String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_ContainerNameMustNotBeEmpty, "GroupPlaceholderID"));
601throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
669throw new ArgumentOutOfRangeException("value", String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_ContainerNameMustNotBeEmpty, "ItemPlaceholderID"));
785throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_DataKeyNamesMustBeSpecified, ID));
931throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
947throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
978throw new NotSupportedException(AtlasWeb.ListView_StylePropertiesNotSupported);
1455throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
1478throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NeedICollectionOrTotalRowCount, GetType().Name));
1506throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_Missing_VirtualItemCount, ID));
1511throw new InvalidOperationException(AtlasWeb.ListView_DataSourceMustBeCollectionWhenNotDataBinding);
1530throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_GroupItemCountNoGroupTemplate, ID, GroupPlaceholderID));
1563throw new NotSupportedException(AtlasWeb.ListView_StyleNotSupported);
1617throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_InsertTemplateRequired, ID));
2011throw new InvalidOperationException(AtlasWeb.ListView_ItemsNotDataItems);
2125throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NoItemPlaceholder, ID, ItemPlaceholderID));
2131throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NoGroupPlaceholder, ID, GroupPlaceholderID));
2157throw new InvalidOperationException(AtlasWeb.ListView_InvalidCancel);
2182throw new InvalidOperationException(AtlasWeb.ListView_InvalidDelete);
2191throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
2266throw new InvalidOperationException(AtlasWeb.ListView_InvalidEdit);
2336throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
2349throw new InvalidOperationException(AtlasWeb.ListView_InvalidCommand);
2388throw new InvalidOperationException(AtlasWeb.ListView_InvalidInsert);
2399throw new InvalidOperationException(AtlasWeb.ListView_NoInsertItem);
2408throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
2459throw new InvalidOperationException(AtlasWeb.ListView_InvalidSelect);
2497throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
2514throw new InvalidOperationException(AtlasWeb.ListView_InvalidUpdate);
2527throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_NullView, ID));
2647throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_ItemTemplateRequired, ID));
2840throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "ItemCanceling"));
2910throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "ItemDeleting"));
2926throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "ItemEditing"));
2953throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "ItemInserting"));
2978throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "ItemUpdating"));
3049throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "SelectedIndexChanging"));
3076throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_UnhandledEvent, ID, "Sorting"));
3123throw new InvalidOperationException(AtlasWeb.ListView_PersistedSelectionRequiresDataKeysNames);
3281throw new InvalidOperationException(String.Format(CultureInfo.CurrentCulture, AtlasWeb.ListView_DataSourceDoesntSupportPaging, DataSourceID));