Exemple #1
0
 /// <summary>
 ///     Gets or sets the <see cref="Object" /> with the specified identifier.
 /// </summary>
 /// <param name="id">The identifier.</param>
 /// <returns>Object.</returns>
 /// <exception cref="ToBeImplementedException">
 /// </exception>
 Object IWorkItem.this[ICoreField id] {
     get { throw new ToBeImplementedException(); } set { throw new ToBeImplementedException(); }
 }
 /// <summary>
 ///     Gets the <see cref="IFieldDefinition" /> with the specified core field.
 /// </summary>
 /// <param name="coreField">The core field.</param>
 /// <returns>IFieldDefinition.</returns>
 /// <exception cref="ToBeImplementedException"></exception>
 IFieldDefinition IFieldDefinitionCollection.this[ICoreField coreField] {
     get { throw new ToBeImplementedException(); }
 }
 IField IFieldCollection.this[ICoreField coreField] {
     get { throw new NotImplementedException(); }
 }
Exemple #4
0
 /// <summary>
 /// Gets the instance.
 /// </summary>
 /// <param name="src">The source.</param>
 /// <returns>CoreField.</returns>
 public static CoreField GetInstance(ICoreField src)
 {
     return(default(CoreField));
 }