Rhino.Tools.Debugger.Dim.DimIProxy.WithContext C# (CSharp) Метод

WithContext() приватный Метод

Performs the action given by type with the attached Rhino.ContextFactory .
private WithContext ( ) : void
Результат void
			private void WithContext()
			{
				dim.contextFactory.Call(this);
			}

Usage Example

Пример #1
0
		/// <summary>Returns an array of the property names on the given script object.</summary>
		/// <remarks>Returns an array of the property names on the given script object.</remarks>
		public virtual object[] GetObjectIds(object @object)
		{
			Dim.DimIProxy action = new Dim.DimIProxy(this, IPROXY_OBJECT_IDS);
			action.@object = @object;
			action.WithContext();
			return action.objectArrayResult;
		}
All Usage Examples Of Rhino.Tools.Debugger.Dim.DimIProxy::WithContext